From 862900bbfc0a486de3004de7ee36e3c22d99a4cb Mon Sep 17 00:00:00 2001 From: Metin Cakircali Date: Sun, 10 Nov 2024 13:23:48 +0100 Subject: [PATCH] fix(FAM): noop flush and close --- src/fdb5/fam/FamStore.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fdb5/fam/FamStore.cc b/src/fdb5/fam/FamStore.cc index b5dc2425e..ac13fdc24 100644 --- a/src/fdb5/fam/FamStore.cc +++ b/src/fdb5/fam/FamStore.cc @@ -26,8 +26,8 @@ static const StoreBuilder builder(FamCommon::typeName); //---------------------------------------------------------------------------------------------------------------------- -FamStore::FamStore(const Schema& schema, const Key& key, const Config& config): - FamCommon(config, key), Store(schema), config_(config) { } +FamStore::FamStore(const Schema& schema, const Key& key, const Config& config) + : FamCommon(config, key), Store(schema), config_(config) { } FamStore::~FamStore() = default; @@ -51,11 +51,11 @@ auto FamStore::uriExists(const eckit::URI& uri) const -> bool { } void FamStore::flush() { - NOTIMP; + LOG_DEBUG_LIB(LibFdb5) << "FamStore::flush() nothing to do!" << '\n'; } void FamStore::close() { - NOTIMP; + LOG_DEBUG_LIB(LibFdb5) << "FamStore::close() nothing to do!" << '\n'; } auto FamStore::asCollocatedDataURIs(const std::vector& /* uriList */) const -> std::set {