We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324eb5c commit 48682d0Copy full SHA for 48682d0
compute_worker/compute_worker.py
@@ -289,7 +289,6 @@ def rewrite_bundle_url_if_needed(url):
289
290
Example: http://localhost:9000|http://minio:9000
291
"""
292
-
293
rule = Settings.WORKER_BUNDLE_URL_REWRITE
294
if not rule or "|" not in rule:
295
return url
@@ -1425,6 +1424,8 @@ def start(self):
1425
1424
1426
if self.is_scoring:
1427
# Check if scoring program failed
+ # We have try except here because when running scoring program we can have 2 or 3 gathered tasks
1428
+ # 3 gathered tasks in case when `ingestion_only_during_scoring` is True
1429
try:
1430
program_results, _, _ = task_results
1431
except Exception:
0 commit comments