Skip to content

Commit 4aab91d

Browse files
author
Bill Prin
committed
Minor dataproc fixes
1 parent 6958da4 commit 4aab91d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

dataproc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ demonstrated here could also be accomplished using the Cloud Console or the gclo
88
`list_clusters.py` is a simple command-line program to demonstrate connecting to the
99
Dataproc API and listing the clusters in a ergion
1010

11-
`create_cluster_and_submit_jbo.py` demonstrates how to create a cluster, submit the
11+
`create_cluster_and_submit_job.py` demonstrates how to create a cluster, submit the
1212
`pyspark_sort.py` job, download the output from Google Cloud Storage, and output the result.
1313

1414
## Prerequisites to run locally:

dataproc/create_cluster_and_submit_job.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ def wait_for_job(dataproc, project, job_id):
166166
jobId=job_id).execute()
167167
# Handle exceptions
168168
if result['status']['state'] == 'ERROR':
169-
print(result)
170169
raise Exception(result['status']['details'])
171170
elif result['status']['state'] == 'DONE':
172171
print('Job finished')

0 commit comments

Comments
 (0)