Skip to content

Commit

Permalink
Merge pull request #5733 from ehsavoie/WFCORE-6476_fix
Browse files Browse the repository at this point in the history
[WFCORE-6476]: Reducing logging level for failed internal read-on…
  • Loading branch information
yersan committed Oct 23, 2023
2 parents 10e8f47 + 523c02f commit 9073dc8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,11 @@ private void executeStep(final Step step) {
}
} catch (Throwable t) {
// Handling for throwables that don't implement OperationClientException marker interface
MGMT_OP_LOGGER.operationFailed(t, step.operation.get(OP), step.operation.get(OP_ADDR));
if (!step.requiresDoneStage && !isExternalClient()) {
logStepFailure(step, false);
} else {
MGMT_OP_LOGGER.operationFailed(t, step.operation.get(OP), step.operation.get(OP_ADDR));
}

// Provide a failure description if there isn't one already
if (!step.hasFailed()) {
Expand Down

0 comments on commit 9073dc8

Please sign in to comment.