Skip to content

Commit

Permalink
HOTFIX: KAFKA-7097; Set create time default to -1L in VerifiableProducer
Browse files Browse the repository at this point in the history
Reviewers: Anna Povzner <[email protected]>, Ted Yu <[email protected]>, Jason Gustafson <[email protected]>
  • Loading branch information
guozhangwang authored and hachikuji committed Jun 29, 2018
1 parent d44d5d7 commit 18181ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private static ArgumentParser argParser() {
parser.addArgument("--message-create-time")
.action(store())
.required(false)
.setDefault(-1)
.setDefault(-1L)
.type(Long.class)
.metavar("CREATETIME")
.dest("createTime")
Expand Down

0 comments on commit 18181ca

Please sign in to comment.