Skip to content

Commit

Permalink
fix(FAM): noop flush and close
Browse files Browse the repository at this point in the history
  • Loading branch information
mcakircali committed Nov 10, 2024
1 parent 1162279 commit 862900b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fdb5/fam/FamStore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ static const StoreBuilder<FamStore> 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;

Expand All @@ -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<eckit::URI>& /* uriList */) const -> std::set<eckit::URI> {
Expand Down

0 comments on commit 862900b

Please sign in to comment.