Skip to content

Commit

Permalink
Merge pull request #44 from epsilla-cloud/fix_wal
Browse files Browse the repository at this point in the history
Fix WAL init
  • Loading branch information
ricki-epsilla authored Aug 20, 2023
2 parents 394e7b2 + 814afa7 commit 17d39b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/db/wal/write_ahead_log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class WriteAheadLog {
std::chrono::time_point<std::chrono::system_clock> last_rotation_time_;
FILE *file_ = nullptr;
AtomicCounter global_counter_;
bool enabled_;
bool enabled_ = true;
};
} // namespace engine
} // namespace vectordb

0 comments on commit 17d39b9

Please sign in to comment.