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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Streaming runner crashed with a secondary `AttributeError: ERROR` when `source.commit()` raised, because `PipelineReturnStatus.ERROR` does not exist on the enum. The error branch now uses `PipelineReturnStatus.SOURCE_ERROR`, matching the convention used in `producer.py`, so the runner reports a clean Failure status instead of hiding the real commit error behind an enum lookup.

## [0.3.11] - 2026-04-17

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions bizon/engine/runner/adapters/streaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def run(self) -> RunnerStatus:
source.commit()
except Exception as e:
logger.error(f"Error committing source: {e}")
monitor.track_pipeline_status(PipelineReturnStatus.ERROR)
return RunnerStatus(stream=PipelineReturnStatus.ERROR)
monitor.track_pipeline_status(PipelineReturnStatus.SOURCE_ERROR)
return RunnerStatus(stream=PipelineReturnStatus.SOURCE_ERROR)

iteration += 1

Expand Down
Loading