From 4ae75f7ec9273535e69f3fc1a4360968376d173a Mon Sep 17 00:00:00 2001 From: Nick Garfield Date: Tue, 1 Mar 2022 16:02:54 -0700 Subject: [PATCH] Increase lookback window to 15 minutes --- bot/src/exec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/src/exec.rs b/bot/src/exec.rs index 7e3f9ef56..115f4d237 100644 --- a/bot/src/exec.rs +++ b/bot/src/exec.rs @@ -13,7 +13,7 @@ use { }, }; -const LOOKBACK_WINDOW: i64 = 120; // Number of seconds to lookback +const LOOKBACK_WINDOW: i64 = 60 * 10; // Number of seconds to lookback pub fn execute_tasks( client: Arc,