We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f6211 commit fe4a12cCopy full SHA for fe4a12c
server/src/pgboss-worker.ts
@@ -797,6 +797,10 @@ async function registerRunExecutionWorker() {
797
};
798
799
await checkForNewUserQueues();
800
+
801
+ setInterval(async () => {
802
+ await checkForNewUserQueues();
803
+ }, 10000);
804
805
logger.log('info', 'Run execution worker registered successfully');
806
} catch (error: unknown) {
@@ -843,6 +847,10 @@ async function registerAbortRunWorker() {
843
847
844
848
845
849
await checkForNewAbortQueues();
850
851
852
+ await checkForNewAbortQueues();
853
846
854
855
logger.log('info', 'Abort run worker registration system initialized');
856
0 commit comments