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 9019efd commit 08dc50aCopy full SHA for 08dc50a
1 file changed
sdks/python/apache_beam/io/gcp/bigquery_test.py
@@ -1524,8 +1524,10 @@ def test_insert_rows_json_persistent_retriable_exception(
1524
# Expecting 1 initial call plus maximum number of retries
1525
expected_call_count = 1 + bigquery_tools.MAX_RETRIES
1526
1527
+ # This relies on runner-specific mocking behavior which can be
1528
+ # inconsistent on Prism.
1529
with self.assertRaises(Exception) as exc:
- with beam.Pipeline() as p:
1530
+ with beam.Pipeline('FnApiRunner') as p:
1531
_ = (
1532
p
1533
| beam.Create([{
0 commit comments