Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Add missing / before logs for log URI in invoke (close #16)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderdean committed Mar 28, 2016
1 parent 9990465 commit 1f9c93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def run_emr(profile, bucket, ec2_keyname, vpc_subnet_id):
conn = boto.emr.connect_to_region(r, profile_name=profile)
job_id = conn.run_jobflow(
name="Spark Example Project",
log_uri="s3://" + bucket + "logs",
log_uri="s3://" + bucket + "/logs",
ec2_keyname=ec2_keyname,
master_instance_type="m3.xlarge",
slave_instance_type="m3.xlarge",
Expand Down

0 comments on commit 1f9c93a

Please sign in to comment.