damccorm commented on code in PR #38132:
URL: https://github.com/apache/beam/pull/38132#discussion_r3080244079
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/StorageApiWriteUnshardedRecords.java:
##########
@@ -850,7 +850,7 @@ long flush(
boolean hasPersistentErrors =
failedContext.getError() instanceof
Exceptions.StreamFinalizedException
|| statusCode.equals(Status.Code.INVALID_ARGUMENT)
- || statusCode.equals(Status.Code.NOT_FOUND)
+ || (!this.useDefaultStream &&
statusCode.equals(Status.Code.NOT_FOUND))
Review Comment:
Why is it not a persistent error if the default stream is not found? Where
are you seeing this issue?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]