Skip to content

Commit 76efee7

Browse files
therepanicfmbenhassine
authored andcommitted
Polish StepExecution#getSummary
Closes: #5025 Signed-off-by: Andrey Litvitski <andrey1010102008@gmail.com> (cherry picked from commit 484aab4)
1 parent 4d99f43 commit 76efee7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-batch-core/src/main/java/org/springframework/batch/core/StepExecution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ public String toString() {
525525
*/
526526
public String getSummary() {
527527
return super.toString() + String.format(
528-
", name=%s, status=%s, exitStatus=%s, readCount=%d, filterCount=%d, writeCount=%d readSkipCount=%d, writeSkipCount=%d"
528+
", name=%s, status=%s, exitStatus=%s, readCount=%d, filterCount=%d, writeCount=%d, readSkipCount=%d, writeSkipCount=%d"
529529
+ ", processSkipCount=%d, commitCount=%d, rollbackCount=%d",
530530
stepName, status, exitStatus.getExitCode(), readCount, filterCount, writeCount, readSkipCount,
531531
writeSkipCount, processSkipCount, commitCount, rollbackCount);

0 commit comments

Comments
 (0)