summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Durgin <josh.durgin@inktank.com>2013-09-10 14:47:31 -0700
committerJosh Durgin <josh.durgin@inktank.com>2013-09-10 14:47:31 -0700
commitc24e1706275d05d5d57086cb1e9f0d5340599efb (patch)
tree18fee27381ec4cb5bf735b83cb87656bcf4ce69a
parentdedfccd904494e382f07a565b2bc7a37bf5573b3 (diff)
downloadceph-c24e1706275d05d5d57086cb1e9f0d5340599efb.tar.gz
mon: fix syntax error in osd pool create args
Just missing a space between pgp_num and properties specification. Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
-rw-r--r--src/mon/MonCommands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mon/MonCommands.h b/src/mon/MonCommands.h
index 2949f863888..53d7f75e699 100644
--- a/src/mon/MonCommands.h
+++ b/src/mon/MonCommands.h
@@ -479,7 +479,7 @@ COMMAND("osd pool rmsnap " \
COMMAND("osd pool create " \
"name=pool,type=CephPoolname " \
"name=pg_num,type=CephInt,range=0 " \
- "name=pgp_num,type=CephInt,range=0,req=false" \
+ "name=pgp_num,type=CephInt,range=0,req=false " \
"name=properties,type=CephString,n=N,req=false,goodchars=[A-Za-z0-9-_.=]", \
"create pool", "osd", "rw", "cli,rest")
COMMAND("osd pool delete " \