Skip to content

Commit 74d18f9

Browse files
emmaling27Convex, Inc.
authored andcommitted
Lower document retention from 80 days to 79 days (#42911)
GitOrigin-RevId: 72f9095d90cdbe3432ef74b021d3c203ddb93b9b
1 parent 86b9a6e commit 74d18f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/common/src/knobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ pub static INDEX_RETENTION_DELAY: LazyLock<Duration> =
408408
///
409409
/// Smaller window means we keep less historical data around.
410410
pub static DOCUMENT_RETENTION_DELAY: LazyLock<Duration> = LazyLock::new(|| {
411-
Duration::from_secs(env_config("DOCUMENT_RETENTION_DELAY", 60 * 60 * 24 * 80))
411+
Duration::from_secs(env_config("DOCUMENT_RETENTION_DELAY", 60 * 60 * 24 * 79))
412412
});
413413

414414
/// When to start rejecting new additions to the search memory index.

0 commit comments

Comments
 (0)