From: John Spray Date: Wed, 3 Jun 2015 09:22:50 +0000 (+0100) Subject: mon: Remove spurious 'who' arg from mds rm X-Git-Tag: v9.0.2~19^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e8e8b12c37d01bb183372f2fc85ec8b3d0d51ebe;p=ceph.git mon: Remove spurious 'who' arg from mds rm This was never used, looks like a typo from f26bd55e where the MonCommands.h definitions were created. Remove it because it confuses people using "mds rm" who end up thinking it's not working because they aren't passing a who. Signed-off-by: John Spray --- diff --git a/src/mon/MonCommands.h b/src/mon/MonCommands.h index 6f9b8769473..6e34c5056fa 100644 --- a/src/mon/MonCommands.h +++ b/src/mon/MonCommands.h @@ -307,8 +307,7 @@ COMMAND("mds fail name=who,type=CephString", \ COMMAND("mds repaired name=rank,type=CephInt", \ "mark a damaged MDS rank as no longer damaged", "mds", "rw", "cli,rest") COMMAND("mds rm " \ - "name=gid,type=CephInt,range=0 " \ - "name=who,type=CephName", \ + "name=gid,type=CephInt,range=0", \ "remove nonactive mds", "mds", "rw", "cli,rest") COMMAND("mds rmfailed name=who,type=CephInt,range=0", "remove failed mds", \ "mds", "rw", "cli,rest")