v3: Correctly handle tasks that have no output when resuming

This commit is contained in:
Eric Allam
2024-03-11 15:43:45 +00:00
parent 20aa1cbe9b
commit e8381d5341
@@ -786,7 +786,7 @@ class SharedQueueTasks {
const success: TaskRunSuccessfulExecutionResult = {
ok,
id: attempt.friendlyId,
output: attempt.output ?? "",
output: attempt.output ?? undefined,
outputType: attempt.outputType,
};
return success;