Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmeldrum committed Dec 1, 2023
2 parents 59bbd61 + 9f100aa commit 560f637
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public CommandResult buildTfCommandResult(List<String> jsonLogs) {
.toList();

List<Map<String, Object>> errorLogs = getErrorLogs(jsonLogs);

JobStatus status = CollectionUtils.isEmpty(errorLogs) ? JobStatus.success : JobStatus.error;
return CommandResult.builder()
.logs(ListUtils.union(successLogs, errorLogs))
Expand Down Expand Up @@ -133,7 +133,6 @@ KEY_DIAGNOSTIC_DETAIL, extractDiagnosticDetailMessage(expandedLogMessage.get(KEY
"level", expandedLogMessage.get(KEY_LEVEL).toString().toUpperCase(),
"timestamp", expandedLogMessage.get(KEY_TIMESTAMP)
);

}

private String extractDiagnosticDetailMessage(Object diagnostic) {
Expand Down

0 comments on commit 560f637

Please sign in to comment.