nabarunnag commented on a change in pull request #7421:
URL: https://github.com/apache/geode/pull/7421#discussion_r821011342
##########
File path:
geode-gfsh/src/main/java/org/apache/geode/management/internal/cli/commands/CreateGatewaySenderCommand.java
##########
@@ -297,7 +297,7 @@ public ResultModel preExecution(GfshParseResult
parseResult) {
.getParamValue(
CliStrings.CREATE_GATEWAYSENDER__ENFORCE_THREADS_CONNECT_SAME_RECEIVER);
- if (dispatcherThreads != null && dispatcherThreads > 1 && orderPolicy ==
null) {
+ if (!parallel && dispatcherThreads != null && dispatcherThreads > 1 &&
orderPolicy == null) {
Review comment:
I was just wondering if we even need this check. When I compare with the
Java API, if the order policy is null it is set to the default automatically.
But its okay for now, maybe a later conversation.
--
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]