This is an automated email from the ASF dual-hosted git repository.
FrankChen021 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new a6316e198ee Fix typos `Encounted InterrupedException` in
SeekableStreamIndexTaskRunner log (#19318)
a6316e198ee is described below
commit a6316e198ee20c188a3bc7e114a3f3c93e132f24
Author: Mukunda Rao Katta <[email protected]>
AuthorDate: Mon Apr 27 08:21:25 2026 -0700
Fix typos `Encounted InterrupedException` in SeekableStreamIndexTaskRunner
log (#19318)
Two adjacent misspellings on the same log line: `Encounted` ->
`Encountered` and `InterrupedException` -> `InterruptedException`.
Log string only; no behaviour change.
Fixes #19189
Co-authored-by: MukundaKatta <[email protected]>
---
.../druid/indexing/seekablestream/SeekableStreamIndexTaskRunner.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTaskRunner.java
b/indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTaskRunner.java
index c4fa66e1b9e..12b89c282c1 100644
---
a/indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTaskRunner.java
+++
b/indexing-service/src/main/java/org/apache/druid/indexing/seekablestream/SeekableStreamIndexTaskRunner.java
@@ -811,7 +811,7 @@ public abstract class
SeekableStreamIndexTaskRunner<PartitionIdType, SequenceOff
// (1) catch all exceptions while reading from kafka
if (Throwables.getRootCause(e) instanceof InterruptedException) {
// Suppress InterruptedException stack trace to avoid flooding the
logs
- log.error("Encounted InterrupedException in run() before
persisting");
+ log.error("Encountered InterruptedException in run() before
persisting");
} else {
log.error(e, "Encountered exception in run() before persisting.");
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]