Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-717 [created] 49928d739
HAWQ-717 Update variable name sub_args_list Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/49928d73 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/49928d73 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/49928d73 Branch: refs/heads/HAWQ-717 Commit: 49928d7390cafaf09a33dd29aad72d2e9232373b Parents: 156e983 Author: Bhuvnesh Chaudhary <[email protected]> Authored: Tue May 10 11:21:43 2016 -0700 Committer: Bhuvnesh Chaudhary <[email protected]> Committed: Tue May 10 11:21:43 2016 -0700 ---------------------------------------------------------------------- tools/bin/hawq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/49928d73/tools/bin/hawq ---------------------------------------------------------------------- diff --git a/tools/bin/hawq b/tools/bin/hawq index 637553b..08c30e4 100755 --- a/tools/bin/hawq +++ b/tools/bin/hawq @@ -88,7 +88,7 @@ def main(): if hawq_command == 'ssh-exkeys' and '-p' in sub_args_list: password_index = sub_args_list.index('-p') + 1 if len(sub_args_list) > password_index: - sub_arg_list[password_index] = json.dumps(sub_args_list[password_index]) + sub_args_list[password_index] = json.dumps(sub_args_list[password_index]) sub_args = " ".join(sub_args_list) elif len(sys.argv) > 1: hawq_command = sys.argv[1]
