Skip to content

Commit

Permalink
BUG fix logging of cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
ksindi committed Jan 24, 2017
1 parent 7d7a83f commit 066f435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparksteps/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def main():
cluster_config = cluster.emr_config(**args_dict)
response = client.run_job_flow(**cluster_config)
cluster_id = response['JobFlowId']
logger.info("Cluster ID: ", cluster_id)
logger.info("Cluster ID: %s", cluster_id)

emr_steps = steps.setup_steps(s3,
args.s3_bucket,
Expand Down

0 comments on commit 066f435

Please sign in to comment.