8000 experiment to check if SyncWAL works on Windows by jsteemann · Pull Request #14551 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update arangod/RocksDBEngine/Methods/RocksDBTrxBaseMethods.cpp
  • Loading branch information
jsteemann authored Jul 28, 2021
commit eb28e5c46cfc4702728740bf77ca0e62d7ae277e
2 changes: 1 addition & 1 deletion arangod/RocksDBEngine/Methods/RocksDBTrxBaseMethods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ arangodb::Result RocksDBTrxBaseMethods::doCommit() {
_state->commitCollections(_lastWrittenOperationTick);
cleanupCollTrx.cancel();

// wait for sync if required, for all other platforms but Windows
// wait for sync if required
if (_state->waitForSync()) {
auto& selector = _state->vocbase().server().getFeature<EngineSelectorFeature>();
auto& engine = selector.engine<RocksDBEngine>();
Expand Down
0