aIbrahiim commented on code in PR #37350:
URL: https://github.com/apache/beam/pull/37350#discussion_r2709035282
##########
sdks/python/apache_beam/io/gcp/bigquery_test.py:
##########
@@ -723,7 +723,7 @@ def test_read_export_exception(self, exception_type,
error_message):
'Insert') as mock_query_job, \
mock.patch('time.sleep'), \
self.assertRaises(Exception) as exc,\
- beam.Pipeline() as p:
+ beam.Pipeline(runner='DirectRunner') as p:
Review Comment:
Ahh ok, I now understand that DirectRunner = SwitchingDirectRunner which
automatically selects PrismRunner which FnApiRunner which
BundleBasedDirectRunner based on pipeline compatibility so since both
PrismRunner and FnApiRunner use grpc the timeout errors are expected behavior
with the current configuration
--
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]