integration: preserve deployed 1.8.0 OTA work

This commit is contained in:
archipelago
2026-06-30 05:08:17 -04:00
parent f4f45c1a09
commit df9d3a55be
39 changed files with 1066 additions and 203 deletions
+8 -2
View File
@@ -169,7 +169,11 @@ impl ContainerRuntime for PodmanRuntime {
}
async fn stop_container_with_grace(&self, name: &str, grace_secs: u64) -> Result<()> {
match self.client.stop_container_with_grace(name, grace_secs).await {
match self
.client
.stop_container_with_grace(name, grace_secs)
.await
{
Ok(()) => Ok(()),
Err(api_err) => {
// CLI fallback. Keep the wrapper deadline strictly above the
@@ -897,7 +901,9 @@ impl ContainerRuntime for AutoRuntime {
}
async fn stop_container_with_grace(&self, name: &str, grace_secs: u64) -> Result<()> {
self.runtime.stop_container_with_grace(name, grace_secs).await
self.runtime
.stop_container_with_grace(name, grace_secs)
.await
}
async fn remove_container(&self, name: &str) -> Result<()> {