chore(multiregion): add load-bearing log statement

This commit is contained in:
Charles Driesler
2025-01-24 14:34:12 +00:00
parent afc06d78d7
commit 6d6f800fbf
+2
View File
@@ -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)
}