Merge "redis: fix CLIENT_LIST_ARGS parsing"

This commit is contained in:
Jenkins 2017-05-18 16:37:57 +00:00 committed by Gerrit Code Review
commit 0ea87f2e1a
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ def get_client(conf):
if a in CLIENT_BOOL_ARGS:
v = utils.strtobool(options[a][-1])
elif a in CLIENT_LIST_ARGS:
v = options[a][-1]
v = options[a]
elif a in CLIENT_INT_ARGS:
v = int(options[a][-1])
else: