Skip to content

Commit 86b088c

Browse files
committed
Add more logging
1 parent 8892073 commit 86b088c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

apps/coordinator/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ class TaskCoordinator {
703703
completion: {
704704
id: message.completion.id,
705705
ok: message.completion.ok,
706+
metadata: message.completion.metadata,
706707
},
707708
});
708709

apps/webapp/app/v3/handleSocketIo.server.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ function createCoordinatorNamespace(io: Server) {
127127
await resumeAttempt.call(message);
128128
},
129129
TASK_RUN_COMPLETED: async (message) => {
130+
logger.debug("[handleSocketIO] TASK_RUN_COMPLETED", { completion: message.completion });
131+
130132
const completeAttempt = new CompleteAttemptService({
131133
supportsRetryCheckpoints: message.version === "v1",
132134
});

0 commit comments

Comments
 (0)