From: David Zafman Date: Fri, 7 Apr 2017 18:52:57 +0000 (-0700) Subject: test: Fix intended test flow and restore nearfull-ratio X-Git-Tag: v12.0.2~51^2~18 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e927cd2cf23d97e0d49647f79acd2f3a95bd43c3;p=ceph.git test: Fix intended test flow and restore nearfull-ratio This is inconsequential but seems to have always been wrong since original commit 6cafb0e3e0bc5f992c2483a46cb00e83dca035cc Signed-off-by: David Zafman --- diff --git a/qa/workunits/rest/test.py b/qa/workunits/rest/test.py index 1208f85b907e..1a7ab30b8863 100755 --- a/qa/workunits/rest/test.py +++ b/qa/workunits/rest/test.py @@ -362,7 +362,7 @@ if __name__ == '__main__': expect('osd/set-nearfull-ratio?ratio=0.90', 'PUT', 200, '') r = expect('osd/dump', 'GET', 200, 'json', JSONHDR) assert(float(r.myjson['output']['nearfull_ratio']) == 0.90) - expect('osd/set-full-ratio?ratio=0.85', 'PUT', 200, '') + expect('osd/set-nearfull-ratio?ratio=0.85', 'PUT', 200, '') r = expect('pg/stat', 'GET', 200, 'json', JSONHDR) assert('num_pgs' in r.myjson['output'])