mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Fix misleading log message
Fix DLQ error log message incorrectly referring to PQ. Fixes #11063
This commit is contained in:
parent
fe6783b3cb
commit
0f25107cde
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ public final class RecordIOReader implements Closeable {
|
|||
if (versionInFile != VERSION) {
|
||||
this.channel.close();
|
||||
throw new RuntimeException(String.format(
|
||||
"Invalid version on PQ data file %s. Expected version: %c. Version found on file: %c",
|
||||
"Invalid version on DLQ data file %s. Expected version: %c. Version found on file: %c",
|
||||
path, VERSION, versionInFile));
|
||||
}
|
||||
this.channelPosition = this.channel.position();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue