We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d501a commit d314338Copy full SHA for d314338
bigquery_etl/cli/query.py
@@ -2309,7 +2309,7 @@ def _update_query_schema(
2309
credentials=credentials,
2310
id_token=id_token,
2311
)
2312
- except Exception:
+ except Exception as e:
2313
if not existing_schema_path.exists():
2314
click.echo(
2315
click.style(
@@ -2319,6 +2319,8 @@ def _update_query_schema(
2319
),
2320
err=True,
2321
2322
+ # Temporarily print the exception so we can see why it's failing.
2323
+ click.echo(str(e), err=True)
2324
return
2325
2326
# update bigquery metadata
0 commit comments