Skip to content

Commit 7ccd607

Browse files
authored
fix(cubestore): Disable writing cachestore logs by default to reduce use of disk space (#9003)
1 parent 4613628 commit 7ccd607

File tree

1 file changed

+1
-1
lines changed
  • rust/cubestore/cubestore/src/config

1 file changed

+1
-1
lines changed

rust/cubestore/cubestore/src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ impl Config {
13581358
Some(60),
13591359
Some(15),
13601360
),
1361-
cachestore_log_enabled: env_bool("CUBESTORE_CACHESTORE_LOG_ENABLED", true),
1361+
cachestore_log_enabled: env_bool("CUBESTORE_CACHESTORE_LOG_ENABLED", false),
13621362
cachestore_rocks_store_config: RocksStoreConfig::cachestore_default(),
13631363
cachestore_gc_loop_interval: env_parse_duration(
13641364
"CUBESTORE_CACHESTORE_GC_LOOP",

0 commit comments

Comments
 (0)