Skip to content

Commit 7fd9eef

Browse files
committed
return undefined from dequeueFromWorkerQueue, not null
1 parent 8c90908 commit 7fd9eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal-packages/run-engine/src/engine/systems/dequeueSystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class DequeueSystem {
9696
);
9797
// remove the run from the queue
9898
await this.$.runQueue.acknowledgeMessage(orgId, runId);
99-
return null;
99+
return;
100100
}
101101

102102
//create a failed snapshot

0 commit comments

Comments
 (0)