mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 08:21:09 +01:00
ircd::db: RocksDB >= 6.0.0 CompactionFilter::IgnoreSnapshots() must always be true.
This commit is contained in:
parent
598bbc45cc
commit
86bacdfcb5
1 changed files with 2 additions and 1 deletions
|
@ -3375,7 +3375,8 @@ bool
|
||||||
ircd::db::database::compaction_filter::IgnoreSnapshots()
|
ircd::db::database::compaction_filter::IgnoreSnapshots()
|
||||||
const noexcept
|
const noexcept
|
||||||
{
|
{
|
||||||
return false;
|
// RocksDB >= 6.0.0 sez this must no longer be false.
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
|
|
Loading…
Reference in a new issue