Skip to content

Commit

Permalink
Use number of worker instances as string on template
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan Douglas R. de Oliveira committed May 1, 2014
1 parent ba528b9 commit 6c34671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2/spark_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def deploy_files(conn, root_dir, opts, master_nodes, slave_nodes, modules):
"spark_version": spark_v,
"shark_version": shark_v,
"hadoop_major_version": opts.hadoop_major_version,
"spark_worker_instances": opts.worker_instances
"spark_worker_instances": "%d" % opts.worker_instances
}

# Create a temp directory in which we will place all the files to be
Expand Down

0 comments on commit 6c34671

Please sign in to comment.