Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
actually retry
  • Loading branch information
nicktrn committed Feb 14, 2025
commit 71862dd618089bbbcc5321f77a9b9cca6a2fec1b
7 changes: 6 additions & 1 deletion apps/coordinator/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,12 @@ class TaskCoordinator {
delay,
elapsedMs,
});
return await sendCompletionWithAck();

const success = await sendCompletionWithAck();

if (!success) {
throw new Error("Failed to send completion with ack");
}
}
);

Expand Down
Loading