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 8892073 commit 86b088cCopy full SHA for 86b088c
apps/coordinator/src/index.ts
@@ -703,6 +703,7 @@ class TaskCoordinator {
703
completion: {
704
id: message.completion.id,
705
ok: message.completion.ok,
706
+ metadata: message.completion.metadata,
707
},
708
});
709
apps/webapp/app/v3/handleSocketIo.server.ts
@@ -127,6 +127,8 @@ function createCoordinatorNamespace(io: Server) {
127
await resumeAttempt.call(message);
128
129
TASK_RUN_COMPLETED: async (message) => {
130
+ logger.debug("[handleSocketIO] TASK_RUN_COMPLETED", { completion: message.completion });
131
+
132
const completeAttempt = new CompleteAttemptService({
133
supportsRetryCheckpoints: message.version === "v1",
134
0 commit comments