Skip to content
Snippets Groups Projects
Commit e014c1d1 authored by Josh Rosen's avatar Josh Rosen
Browse files

Fix SPARK-670: EC2 start command should require -i option.

parent 7af92f24
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ def parse_args():
parser.print_help()
sys.exit(1)
(action, cluster_name) = args
if opts.identity_file == None and action in ['launch', 'login']:
if opts.identity_file == None and action in ['launch', 'login', 'start']:
print >> stderr, ("ERROR: The -i or --identity-file argument is " +
"required for " + action)
sys.exit(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment