Skip to content

Commit 548fb18

Browse files
authored
MINOR: Fix typo for the headers.separator cli option (#20489)
Should be `headers.separator=<headers.separator>` instead of `headers.separator=<line.separator>` Reviewers: Kuan-Po Tseng <[email protected]>, Ken Huang <[email protected]>, Chia-Ping Tsai <[email protected]>
1 parent 5fefb16 commit 548fb18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/src/main/java/org/apache/kafka/tools/consumer/ConsoleConsumerOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public ConsoleConsumerOptions(String[] args) throws IOException {
111111
" print.value=true|false\n" +
112112
" key.separator=<key.separator>\n" +
113113
" line.separator=<line.separator>\n" +
114-
" headers.separator=<line.separator>\n" +
114+
" headers.separator=<headers.separator>\n" +
115115
" null.literal=<null.literal>\n" +
116116
" key.deserializer=<key.deserializer>\n" +
117117
" value.deserializer=<value.deserializer>\n" +

tools/src/main/java/org/apache/kafka/tools/consumer/ConsoleShareConsumerOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public ConsoleShareConsumerOptions(String[] args) throws IOException {
8383
" print.value=true|false\n" +
8484
" key.separator=<key.separator>\n" +
8585
" line.separator=<line.separator>\n" +
86-
" headers.separator=<line.separator>\n" +
86+
" headers.separator=<headers.separator>\n" +
8787
" null.literal=<null.literal>\n" +
8888
" key.deserializer=<key.deserializer>\n" +
8989
" value.deserializer=<value.deserializer>\n" +

0 commit comments

Comments
 (0)