From 6d6f800fbf82ac25a3d690aa349a75abdf2eddb2 Mon Sep 17 00:00:00 2001 From: Charles Driesler Date: Fri, 24 Jan 2025 14:34:12 +0000 Subject: [PATCH] chore(multiregion): add load-bearing log statement --- packages/server/test/hooks.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/server/test/hooks.ts b/packages/server/test/hooks.ts index fe6ac34c9..036814827 100644 --- a/packages/server/test/hooks.ts +++ b/packages/server/test/hooks.ts @@ -211,6 +211,8 @@ export const resetPubSubFactory = (deps: { db: Knex }) => async () => { // Drop all subs for (const subscription of subscriptions.rows) { + // If we do not log something here, CircleCI may kill the job while we wait all `dropSubs` calls to finish. + console.log(`Dropping subscription ${subscription.subname}`) await dropSubs(subscription) await wait(500) }