From c23e84eb372f55513d04baddd5e6d9c848a19a4e Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Tue, 10 Jun 2025 10:06:21 +0100 Subject: [PATCH] Merge pull request #26273 from overleaf/bg-history-redis-add-persist-worker-to-cron modify existing run-chunk-lifecycle cron job to persist and expire redis queues GitOrigin-RevId: afb94b3e2fba7368cfec11997dfd5b2bbd6321a9 --- .../history-v1/storage/scripts/persist_and_expire_queues.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 services/history-v1/storage/scripts/persist_and_expire_queues.sh diff --git a/services/history-v1/storage/scripts/persist_and_expire_queues.sh b/services/history-v1/storage/scripts/persist_and_expire_queues.sh new file mode 100644 index 0000000000..d9ff60ea31 --- /dev/null +++ b/services/history-v1/storage/scripts/persist_and_expire_queues.sh @@ -0,0 +1,3 @@ +#!/bin/sh +node storage/scripts/persist_redis_chunks.js +node storage/scripts/expire_redis_chunks.js