You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kh...@apache.org on 2018/03/01 19:14:17 UTC

[geode] 01/01: GEODE-4756: Restore the correct help string for the --group option

This is an automated email from the ASF dual-hosted git repository.

khowe pushed a commit to branch feature/GEODE-4756
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 2a059aea8b7ccb632a50760f8f51cf0ef1d9f12d
Author: Ken Howe <kh...@pivotal.io>
AuthorDate: Thu Mar 1 11:11:54 2018 -0800

    GEODE-4756: Restore the correct help string for the --group option
    
    Help string should be: Group name for which members will be displayed.
---
 .../geode/management/internal/cli/commands/ListMembersCommand.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ListMembersCommand.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ListMembersCommand.java
index c676784..d0a3df5 100644
--- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ListMembersCommand.java
+++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ListMembersCommand.java
@@ -40,7 +40,7 @@ public class ListMembersCommand implements GfshCommand {
       operation = ResourcePermission.Operation.READ)
   public Result listMember(@CliOption(key = {CliStrings.GROUP, CliStrings.GROUPS},
       optionContext = ConverterHint.MEMBERGROUP,
-      help = CliStrings.ALTER_REGION__GROUP__HELP) String[] groups) {
+      help = CliStrings.LIST_MEMBER__GROUP__HELP) String[] groups) {
 
     Set<DistributedMember> memberSet = new TreeSet<>();
     memberSet.addAll(this.findMembersIncludingLocators(groups, null));

-- 
To stop receiving notification emails like this one, please contact
khowe@apache.org.