DonalEvans commented on a change in pull request #6883:
URL: https://github.com/apache/geode/pull/6883#discussion_r714082743
##########
File path:
geode-apis-compatible-with-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/connection/AuthIntegrationTest.java
##########
@@ -53,22 +54,33 @@ public int getPort() {
return port;
}
+ @Override
+ public String getUsername() {
+ return "dataWrite";
+ }
+
+ @Override
+ public String getPassword() {
+ return "dataWrite";
+ }
+
public void setupCacheWithSecurity() throws Exception {
- setupCache(true, true);
+ setupCache(getUsername(), true);
}
public void setupCacheWithoutSecurity() throws Exception {
- setupCache(false, false);
+ setupCache(null, false);
}
- private void setupCache(boolean withUsername, boolean withSecurityManager)
throws Exception {
+ private void setupCache(String username, boolean withSecurityManager) throws
Exception {
+ System.setProperty("io.netty.eventLoopThreads", "1");
Review comment:
Thanks for the explanation!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]