Add warn trace event about non-determinism

This commit is contained in:
Daniel Smith 2021-07-13 12:24:39 -04:00
parent 4e16e2552b
commit ac46992120
1 changed files with 2 additions and 0 deletions

View File

@ -1291,6 +1291,8 @@ void SimulationConfig::setStorageEngine(const TestConfig& testConfig) {
set_config("ssd-rocksdb-experimental");
// Tests using the RocksDB engine are necessarily non-deterministic because of RocksDB
// background threads.
TraceEvent(SevWarn, "RocksDBNonDeterminism")
.detail("Explanation", "The RocksDB storage engine is threaded and non-deterministic");
noUnseed = true;
break;
}