Make collab quieter on startup (#8685)

Fix initialization of minio to happen on service start instead of
bootstrap,
don't log errors if extensions are empty or if clickhouse is disabled

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2024-03-01 13:39:13 -07:00 committed by GitHub
parent 64460e492a
commit 400fb12f7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 38 additions and 35 deletions

View file

@ -147,9 +147,7 @@ async fn fetch_extensions_from_blob_store(
.send()
.await?;
let objects = list
.contents
.ok_or_else(|| anyhow!("missing bucket contents"))?;
let objects = list.contents.unwrap_or_default();
let mut published_versions = HashMap::<&str, Vec<&str>>::default();
for object in &objects {