From 439eafa59f8ad2e0b70c70f7eab4a230f0672556 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 5 Aug 2020 21:53:53 -0700 Subject: [PATCH] ircd::db: Use default auto value for ttl setting. --- ircd/db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/db.cc b/ircd/db.cc index 44a7390c1..b0039b0a1 100644 --- a/ircd/db.cc +++ b/ircd/db.cc @@ -2107,7 +2107,7 @@ ircd::db::database::column::column(database &d, this->options.num_levels = 7; this->options.level0_file_num_compaction_trigger = 2; this->options.level_compaction_dynamic_level_bytes = false; - this->options.ttl = 0; + //this->options.ttl = -2U; #ifdef IRCD_DB_HAS_PERIODIC_COMPACTIONS this->options.periodic_compaction_seconds = this->descriptor->compaction_period.count(); #endif