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 631be42 commit 82ef3c4Copy full SHA for 82ef3c4
docs/bxl/how_tos/how_to_handle_errors.md
@@ -62,15 +62,15 @@ lazy_ops = [
62
#### For collective error handling (stop on first error):
63
64
```python
65
-result = ctx.lazy.join(lazy_ops).catch().resolve()
+result = ctx.lazy.join_all(lazy_ops).catch().resolve()
66
```
67
68
The Return type is `Result[list[bxl.AnalysisResult]]`
69
70
#### For individual error handling per operation:
71
72
73
-result = ctx.lazy.join([op.catch() for op in lazy_ops]).resolve()
+result = ctx.lazy.join_all([op.catch() for op in lazy_ops]).resolve()
74
75
76
The Return type is `list[Result[bxl.AnalysisResult]]`
0 commit comments