0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 23:08:20 +02:00

ircd::db: RocksDB >= 6.0.0 CompactionFilter::IgnoreSnapshots() must always be true.

This commit is contained in:
Jason Volk 2020-05-05 22:24:25 -07:00
parent 598bbc45cc
commit 86bacdfcb5

View file

@ -3375,7 +3375,8 @@ bool
ircd::db::database::compaction_filter::IgnoreSnapshots()
const noexcept
{
return false;
// RocksDB >= 6.0.0 sez this must no longer be false.
return true;
}
const char *