We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76f3368 commit 0b16f8aCopy full SHA for 0b16f8a
crates/core/src/host/host_controller.rs
@@ -521,7 +521,10 @@ impl HostController {
521
}
522
523
async fn try_init_host(&self, database: Database, replica_id: u64) -> anyhow::Result<Host> {
524
- Host::try_init(self, database, replica_id).await
+ let database_identity = database.database_identity;
525
+ Host::try_init(self, database, replica_id)
526
+ .await
527
+ .with_context(|| format!("failed to init replica {} for {}", replica_id, database_identity))
528
529
530
0 commit comments