Skip to content

Commit

Permalink
fix: expose user/password command line options (#3129)
Browse files Browse the repository at this point in the history
  • Loading branch information
spena committed Jul 26, 2019
1 parent 529c1f5 commit 1fd70fa
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ksql-cli/src/main/java/io/confluent/ksql/cli/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ public class Options {
+ PASSWORD_SHORT_OPTION
+ "/"
+ PASSWORD_OPTION
+ " flag",
hidden = true)
+ " flag")
private String userName;

@SuppressWarnings("unused") // Accessed via reflection
Expand All @@ -86,8 +85,7 @@ public class Options {
+ USERNAME_SHORT_OPTION
+ "/"
+ USERNAME_OPTION
+ " flag",
hidden = true)
+ " flag")
private String password;

@SuppressWarnings("unused") // Accessed via reflection
Expand Down

0 comments on commit 1fd70fa

Please sign in to comment.