You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In trying to track down why data was not appearing in Bigquery even though the import completed "successfully", I noted that the err argument was not populated even though an error had occurred.
It might be reasonable to have developers inspect the status/errorResult property of the apiResponse, but it seems like it would make more sense to report this as an error
The text was updated successfully, but these errors were encountered:
Addendum.. just realizing this is an async job, so reporting the status inline is not going to be reliable. Maybe we can provide a helper function, or maybe just some docs to offer guidance as to how to check for error conditions
In trying to track down why data was not appearing in Bigquery even though the import completed "successfully", I noted that the
err
argument was not populated even though an error had occurred.code:
The
err
argument isundefined
(or perhapsnull
), however the apiResponse reports (verbatim from logs):It might be reasonable to have developers inspect the status/errorResult property of the apiResponse, but it seems like it would make more sense to report this as an error
The text was updated successfully, but these errors were encountered: