(&self, database: Database, replica_id: u64)
| 635 | } |
| 636 | |
| 637 | async fn try_init_host(&self, database: Database, replica_id: u64) -> anyhow::Result<Host> { |
| 638 | let database_identity = database.database_identity; |
| 639 | Host::try_init(self, database, replica_id) |
| 640 | .await |
| 641 | .with_context(|| format!("failed to init replica {} for {}", replica_id, database_identity)) |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | fn stored_program_hash(db: &RelationalDB) -> anyhow::Result<Option<Hash>> { |
no outgoing calls
no test coverage detected