Skip to content

Commit 53ab5a8

Browse files
committed
Hopefully fix re-attempts with >30s delay
1 parent 2b41f51 commit 53ab5a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/cli-v3/src/entryPoints/deploy-run-controller.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,11 +503,10 @@ class ProdWorker {
503503
const taskRunCompleted = await defaultBackoff.execute(async ({ retry }) => {
504504
logger.log("Submit attempt completion with backoff", { retry });
505505

506-
// TODO: update this to use version: v2
507506
return await this.#coordinatorSocket.socket
508507
.timeout(20_000)
509508
.emitWithAck("TASK_RUN_COMPLETED", {
510-
version: "v1",
509+
version: "v2",
511510
execution,
512511
completion,
513512
});

0 commit comments

Comments
 (0)