Skip to content

Commit 7e66abb

Browse files
Update client/src/main/java/io/dapr/durabletask/TaskOrchestrationExecutor.java
Co-authored-by: Javier Aliaga <javier@diagrid.io> Signed-off-by: salaboy <Salaboy@gmail.com>
1 parent f9814bb commit 7e66abb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/main/java/io/dapr/durabletask/TaskOrchestrationExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@ private boolean shouldRetry() {
11881188
}
11891189

11901190
private boolean shouldRetryBasedOnPolicy() {
1191-
logger.warning(() -> String.format(this.attemptNumber + " retries out of total %d performed " + this.policy.getMaxNumberOfAttempts()));
1191+
logger.warning(() -> String.format("%d retries out of total %d performed ", this.attemptNumber, this.policy.getMaxNumberOfAttempts()));
11921192

11931193
if (this.attemptNumber >= this.policy.getMaxNumberOfAttempts()) {
11941194
// Max number of attempts exceeded

0 commit comments

Comments
 (0)