fix: remove path label for cache store (#4336)

* fix: remove path label for cache store

* fix: ignore path label for intermediatemanager

* refactor: remove unused object store
This commit is contained in:
Ning Sun
2024-07-15 11:34:19 +08:00
committed by GitHub
parent 4b8b04ffa2
commit b8bd8456f0
8 changed files with 46 additions and 29 deletions

View File

@@ -60,7 +60,7 @@ pub(crate) async fn new_object_store(
object_store
};
let store = with_instrument_layers(object_store);
let store = with_instrument_layers(object_store, true);
Ok(store)
}