summaryrefslogtreecommitdiffstats
path: root/src/ceph.in
diff options
context:
space:
mode:
authorMichal Jarzabek <stiopa@gmail.com>2015-05-17 16:22:44 +0200
committerMichal Jarzabek <stiopa@gmail.com>2015-05-17 16:22:44 +0200
commit3cf3ac39f1713990a063d54559a450c8abf4c2fe (patch)
tree6c8295b16241af68e27aa8914056484892467192 /src/ceph.in
parentMerge pull request #4436 from BCLibCoop/bclibcoop/rgw-content_length (diff)
downloadceph-3cf3ac39f1713990a063d54559a450c8abf4c2fe.tar.xz
ceph-3cf3ac39f1713990a063d54559a450c8abf4c2fe.zip
cryptic error message in ceph interactive mode
Fixes: #11459 Signed-off-by: Michal Jarzabek <stiopa@gmail.com>
Diffstat (limited to 'src/ceph.in')
-rwxr-xr-xsrc/ceph.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ceph.in b/src/ceph.in
index 317b259c07e..5f7d34c2df6 100755
--- a/src/ceph.in
+++ b/src/ceph.in
@@ -337,7 +337,7 @@ if sys.stdin.isatty():
def read_input():
while True:
line = raw_input(PROMPT).rstrip()
- if line in ['q', 'quit', 'Q']:
+ if line in ['q', 'quit', 'Q', 'exit']:
return None
if line:
return line