(&self, input: Option<SystemUpgrade>)
| 121 | } |
| 122 | |
| 123 | async fn post_upgrade(&self, input: Option<SystemUpgrade>) { |
| 124 | self.system_service |
| 125 | .upgrade_canister(input) |
| 126 | .await |
| 127 | .unwrap_or_else(|err| { |
| 128 | trap(&format!("Error: upgrading canister failed {err}")); |
| 129 | }); |
| 130 | } |
| 131 | |
| 132 | async fn health_status(&self) -> HealthStatus { |
| 133 | self.system_service.health_status() |
no test coverage detected