-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable redis password in Java worker #3943
Conversation
private String startRedisInstance(String ip, int port, Integer shard) { | ||
private String startRedisInstance(String ip, int port, String password, Integer shard) { | ||
String passwordCommand = ""; | ||
if (!StringUtil.isNullOrEmpty(password)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@raulchen I couldn't find some thing like Lists.of()
to replace ImmutableLists.of()
here.
Could you plz give me some suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use Lists.newArrayList
Test PASSed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Linter failed, otherwise looks good
private String startRedisInstance(String ip, int port, Integer shard) { | ||
private String startRedisInstance(String ip, int port, String password, Integer shard) { | ||
String passwordCommand = ""; | ||
if (!StringUtil.isNullOrEmpty(password)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use Lists.newArrayList
d8f979b
to
4519512
Compare
Test PASSed. |
Test FAILed. |
Test PASSed. |
6d87a8b
to
80ec9ea
Compare
Test FAILed. |
@AmplabJenkins retest this, please. |
Test PASSed. |
Test PASSed. |
This PR enables redis password for Java worker.