From 8c24e25965a887e5dd90d0768eba0ed11cb2262a Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sat, 27 Dec 2025 23:15:51 -0300 Subject: [PATCH] fix(bootstrap): Make S3/MinIO connection failure non-fatal - Change from error to warn when bucket creation fails - Continue bootstrap without drive if MinIO not available - Prevents startup failure when S3 not configured --- src/core/bootstrap/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/bootstrap/mod.rs b/src/core/bootstrap/mod.rs index d127f85cc..623d31db2 100644 --- a/src/core/bootstrap/mod.rs +++ b/src/core/bootstrap/mod.rs @@ -1836,8 +1836,8 @@ VAULT_CACHE_TTL=300 Self::upload_directory_recursive(&client, &path, &bucket, "/").await?; } Err(e) => { - error!("Failed to create bucket {}: {:?}", bucket, e); - return Err(anyhow::anyhow!("Failed to create bucket {}: {}. Check S3 credentials and endpoint configuration", bucket, e)); + warn!("S3/MinIO not available, skipping bucket {}: {}", bucket, e); + continue; } } }