jdeppe-pivotal commented on a change in pull request #7123:
URL: https://github.com/apache/geode/pull/7123#discussion_r752322757
##########
File path: geode-log4j/src/main/resources/log4j2.xml
##########
@@ -32,6 +32,7 @@
</Appenders>
<Loggers>
<Logger name="com.gemstone" level="INFO" additivity="true"/>
+ <Logger name="org.testcontainers" level="DEBUG" additivity="true"/>
Review comment:
This should be removed
##########
File path:
geode-for-redis/src/main/java/org/apache/geode/redis/internal/RedisCommandType.java
##########
@@ -167,6 +168,7 @@
/*************** Connection ****************/
AUTH(new AuthExecutor(), SUPPORTED, new Parameter().min(2).max(3,
ERROR_SYNTAX).firstKey(0)
.flags(NOSCRIPT, LOADING, STALE, FAST, NO_AUTH)),
+ CLIENT(new ClientExecutor(), SUPPORTED, new Parameter().min(2)),
Review comment:
You'll also need to add `.firstKey(0).flags(ADMIN, NOSCRIPT, RANDOM,
LOADING, STALE)` in order to get `CommandIntegrationTest` to pass.
--
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]