Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 92ebe4f

Browse filesBrowse files
ryanmatsJon Wayne Parrott
authored andcommitted
Adjusted error handling based on Googler feedback (GoogleCloudPlatform#693)
1 parent 961aa1a commit 92ebe4f
Copy full SHA for 92ebe4f

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎bigquery/cloud-client/load_data_from_gcs.py

Copy file name to clipboardExpand all lines: bigquery/cloud-client/load_data_from_gcs.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def wait_for_job(job):
5454
job.reload()
5555
if job.state == 'DONE':
5656
if job.error_result:
57-
raise RuntimeError(job.error_result)
57+
raise RuntimeError(job.errors)
5858
return
5959
time.sleep(1)
6060

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.