Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Bug: add plugins to cluster_install_cmd call #423

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aztk/spark/helpers/create_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def generate_cluster_start_task(
] + __get_docker_credentials(spark_client)

# start task command
command = __cluster_install_cmd(zip_resource_file, gpu_enabled, docker_repo, worker_on_master, file_shares, mixed_mode)
command = __cluster_install_cmd(zip_resource_file, gpu_enabled, docker_repo, plugins, worker_on_master, file_shares, mixed_mode)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hhm weird, not sure how I managed to create a cluster with that problem

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was almost certainly a merge error that slipped in, should have been caught in review.


return batch_models.StartTask(
command_line=helpers.wrap_commands_in_shell(command),
Expand Down