diff --git a/src/storage/v2/inmemory/storage.cpp b/src/storage/v2/inmemory/storage.cpp index 932d8aa76..988c36acd 100644 --- a/src/storage/v2/inmemory/storage.cpp +++ b/src/storage/v2/inmemory/storage.cpp @@ -1,4 +1,4 @@ -// Copyright 2023 Memgraph Ltd. +// Copyright 2024 Memgraph Ltd. // // Use of this software is governed by the Business Source License // included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source @@ -65,14 +65,14 @@ auto FindEdges(const View view, EdgeTypeId edge_type, const VertexAccessor *from using OOMExceptionEnabler = utils::MemoryTracker::OutOfMemoryExceptionEnabler; -InMemoryStorage::InMemoryStorage(Config config, StorageMode storage_mode) - : Storage(config, storage_mode), +InMemoryStorage::InMemoryStorage(Config config) + : Storage(config, config.storage_mode), recovery_{config.durability.storage_directory / durability::kSnapshotDirectory, config.durability.storage_directory / durability::kWalDirectory}, lock_file_path_(config.durability.storage_directory / durability::kLockFile), uuid_(utils::GenerateUUID()), global_locker_(file_retainer_.AddLocker()) { - MG_ASSERT(storage_mode != StorageMode::ON_DISK_TRANSACTIONAL, + MG_ASSERT(config.storage_mode != StorageMode::ON_DISK_TRANSACTIONAL, "Invalid storage mode sent to InMemoryStorage constructor!"); if (config_.durability.snapshot_wal_mode != Config::Durability::SnapshotWalMode::DISABLED || config_.durability.snapshot_on_exit || config_.durability.recover_on_startup) { @@ -153,8 +153,6 @@ InMemoryStorage::InMemoryStorage(Config config, StorageMode storage_mode) } } -InMemoryStorage::InMemoryStorage(Config config) : InMemoryStorage(config, StorageMode::IN_MEMORY_TRANSACTIONAL) {} - InMemoryStorage::~InMemoryStorage() { if (config_.gc.type == Config::Gc::Type::PERIODIC) { gc_runner_.Stop(); diff --git a/src/storage/v2/inmemory/storage.hpp b/src/storage/v2/inmemory/storage.hpp index 883c1c3ec..b0a7236a0 100644 --- a/src/storage/v2/inmemory/storage.hpp +++ b/src/storage/v2/inmemory/storage.hpp @@ -1,4 +1,4 @@ -// Copyright 2023 Memgraph Ltd. +// Copyright 2024 Memgraph Ltd. // // Use of this software is governed by the Business Source License // included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source @@ -60,7 +60,6 @@ class InMemoryStorage final : public Storage { /// @throw std::system_error /// @throw std::bad_alloc explicit InMemoryStorage(Config config = Config()); - InMemoryStorage(Config config, StorageMode storage_mode); InMemoryStorage(const InMemoryStorage &) = delete; InMemoryStorage(InMemoryStorage &&) = delete;