Skip to content

Commit 65ae070

Browse files
authored
MINOR: log fix in SnapshottableCoordinator (#17726)
Reviewers: donaldzhu-cc, Chia-Ping Tsai <[email protected]>
1 parent 324a74d commit 65ae070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: coordinator-common/src/main/java/org/apache/kafka/coordinator/common/runtime/SnapshottableCoordinator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public synchronized void updateLastCommittedOffset(Long offset) {
165165

166166
if (offset > lastWrittenOffset) {
167167
throw new IllegalStateException("New committed offset " + offset + " of " + tp +
168-
"must be less than or equal to " + lastWrittenOffset + ".");
168+
" must be less than or equal to " + lastWrittenOffset + ".");
169169
}
170170

171171
lastCommittedOffset = offset;

0 commit comments

Comments
 (0)