From 6f0e717e6b634d731d4d0de6c89100db64350e17 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Mon, 5 Sep 2016 12:04:55 +0200 Subject: [PATCH] qa/workunits/cephtool/test.sh: fix omision of ceph-command - The script fails with these commands, but not for the correct reason. Signed-off-by: Willem Jan Withagen --- qa/workunits/cephtool/test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/workunits/cephtool/test.sh b/qa/workunits/cephtool/test.sh index d97a929ad23..090f3f3f00d 100755 --- a/qa/workunits/cephtool/test.sh +++ b/qa/workunits/cephtool/test.sh @@ -1133,9 +1133,9 @@ function test_mon_osd() # ceph osd find expects the OsdName, so both ints and osd.n should work. ceph osd find 1 ceph osd find osd.1 - expect_false osd find osd.xyz - expect_false osd find xyz - expect_false osd find 0.1 + expect_false ceph osd find osd.xyz + expect_false ceph osd find xyz + expect_false ceph osd find 0.1 ceph --format plain osd find 1 # falls back to json-pretty ceph osd metadata 1 | grep 'distro' ceph --format plain osd metadata 1 | grep 'distro' # falls back to json-pretty