Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/concurrency/events-global-serial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Process only one event at a time across all buses.
---

`global-serial` enforces a single global event-processing slot across all `EventBus` instances.
Note: that global lock is scoped to the `EventBus` class; if you need separate global lock domains, subclass `EventBus`.
Note that the global lock is scoped to the `EventBus` class; if you need separate global lock domains, subclass `EventBus`.

Companion runnable example:
- [`examples/concurrency_options.py`](https://github.com/ArchiveBox/abxbus/blob/main/examples/concurrency_options.py)
Expand Down
2 changes: 1 addition & 1 deletion docs/integrations/middleware-auto-error.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ bus = EventBus(
## Behavior

- Runs on completed handler results.
- If a handler errored, emits a auto event with:
- If a handler errored, emits an auto event with:
- `event_type`: `{OriginalEventType}ErrorEvent`
- `error`: original exception
- `error_type`: exception class name
Expand Down
Loading