This is an automated email from the ASF dual-hosted git repository.
Amar3tto pushed a commit to branch fix-inference-ml
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-inference-ml by this push:
new e1f3aaf3634 Increase timeouts
e1f3aaf3634 is described below
commit e1f3aaf363498584a72b6dc3e58a4473700b102e
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Aug 6 15:15:17 2026 +0400
Increase timeouts
---
sdks/python/apache_beam/examples/inference/pytorch_image_captioning.py | 2 +-
.../apache_beam/examples/inference/pytorch_image_object_detection.py | 2 +-
sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/sdks/python/apache_beam/examples/inference/pytorch_image_captioning.py
b/sdks/python/apache_beam/examples/inference/pytorch_image_captioning.py
index def8d270d95..9340a816882 100644
--- a/sdks/python/apache_beam/examples/inference/pytorch_image_captioning.py
+++ b/sdks/python/apache_beam/examples/inference/pytorch_image_captioning.py
@@ -632,7 +632,7 @@ def run(
result = pipeline.run()
try:
- result.wait_until_finish(duration=1800000) # 30 min
+ result.wait_until_finish(duration=9000000) # 150 min
finally:
try:
result.cancel()
diff --git
a/sdks/python/apache_beam/examples/inference/pytorch_image_object_detection.py
b/sdks/python/apache_beam/examples/inference/pytorch_image_object_detection.py
index a8eef5a7d5e..dc0a915631d 100644
---
a/sdks/python/apache_beam/examples/inference/pytorch_image_object_detection.py
+++
b/sdks/python/apache_beam/examples/inference/pytorch_image_object_detection.py
@@ -496,7 +496,7 @@ def run(
result = pipeline.run()
try:
- result.wait_until_finish(duration=1800000) # 30 min
+ result.wait_until_finish(duration=9000000) # 150 min
finally:
try:
result.cancel()
diff --git
a/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
b/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
index 168303cb61c..dee2d3b0d0e 100644
--- a/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
+++ b/sdks/python/apache_beam/examples/inference/pytorch_imagenet_rightfit.py
@@ -516,7 +516,7 @@ def run(
result = pipeline.run()
try:
- result.wait_until_finish(duration=1800000) # 30 min
+ result.wait_until_finish(duration=9000000) # 150 min
finally:
try:
result.cancel()