This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-1408 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 3d281844faccfbf2f831063895eaacbe2e91b36c Author: leonidfrolov <[email protected]> AuthorDate: Thu Sep 1 16:15:03 2022 +0300 [DATALAB-1408]: fixed password agrument --- .../src/general/scripts/azure/dataengine-service_create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_create.py b/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_create.py index 25ebfb34a..7b7af60b0 100644 --- a/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_create.py +++ b/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_create.py @@ -128,9 +128,9 @@ def create_cluster_parameters(location, tags, cluster_version, cluster_login_use if __name__ == "__main__": parser.print_help() - + password = '' params = create_cluster_parameters(args.location, json.loads(args.tags), args.cluster_version, 'datalab-user', - args.password, args.master_instance_type, args.worker_count, + password, args.master_instance_type, args.worker_count, args.worker_instance_type, args.storage_account_name, args.storage_account_key, args.container_name, args.public_key) build_hdinsight_cluster(args.resource_group_name, args.cluster_name, params) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
