Skip to content

Commit 708ceb2

Browse files
committed
remove some unused lines
Signed-off-by: Neil South <neil.south@answerdigital.com>
1 parent a400871 commit 708ceb2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/WorkflowManager/WorkflowExecuter/Services/WorkflowExecuterService.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,9 @@ private async Task ProcessArtifactReceivedOutputs(ArtifactsReceivedEvent message
288288
}
289289
}
290290

291-
//if (addedNew)
292-
//{
293-
// _logger.AddingFilesToWorkflowInstance(workflowInstance.Id, taskId, JsonConvert.SerializeObject(validArtifacts));
294-
// await _workflowInstanceRepository.UpdateTaskOutputArtifactsAsync(workflowInstance.Id, taskId, validArtifacts);
295-
//}
296291
if (currentTask is not null && addedNew)
297292
{
293+
_logger.AddingFilesToWorkflowInstance(workflowInstance.Id, taskId, JsonConvert.SerializeObject(validArtifacts));
298294
await _workflowInstanceRepository.UpdateTaskAsync(workflowInstance.Id, taskId, currentTask);
299295
}
300296
}

0 commit comments

Comments
 (0)