From c24e1706275d05d5d57086cb1e9f0d5340599efb Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 10 Sep 2013 14:47:31 -0700 Subject: [PATCH] mon: fix syntax error in osd pool create args Just missing a space between pgp_num and properties specification. Signed-off-by: Josh Durgin --- src/mon/MonCommands.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon/MonCommands.h b/src/mon/MonCommands.h index 2949f863888f..53d7f75e6990 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 " \ -- 2.47.3