From 296607cd80e929b6abc80f5436cd190bb1d726de Mon Sep 17 00:00:00 2001 From: Emma Litwa-Vulcu Date: Tue, 21 Feb 2023 13:50:04 -0800 Subject: [PATCH] chore: change stale default to 6 weeks this makes more sense as a default, maybe --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 99a7fe6..a553635 100644 --- a/src/config.rs +++ b/src/config.rs @@ -35,7 +35,7 @@ impl<'cfg> Default for Config<'cfg> { "Hey boss, take a look at these, will ya?", "I don't know what this is, or what to do with it:", ], - stale_after: 2 * 7 * 24 * 60 * 60, + stale_after: 6 * 7 * 24 * 60 * 60, small_channel_threshold: 3, notify_secondary_channel: false, secondary_notification_channel_id: "".to_string(),