From e4c22566d0cf53b0def0f4ed22536b69e4b696ff Mon Sep 17 00:00:00 2001 From: Maciej Urbanski Date: Wed, 15 May 2024 16:27:48 +0200 Subject: [PATCH] cleanup old buckets more aggresively --- test/integration/helpers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/integration/helpers.py b/test/integration/helpers.py index da7458ae..70132944 100755 --- a/test/integration/helpers.py +++ b/test/integration/helpers.py @@ -61,8 +61,7 @@ logger = logging.getLogger(__name__) -# A large period is set here to avoid issues related to clock skew or other time-related issues under CI -BUCKET_CLEANUP_PERIOD_MILLIS = timedelta(days=1).total_seconds() * 1000 +BUCKET_CLEANUP_PERIOD_MILLIS = timedelta(hours=3).total_seconds() * 1000 ONE_HOUR_MILLIS = 60 * 60 * 1000 ONE_DAY_MILLIS = ONE_HOUR_MILLIS * 24