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 RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@

## Bug Fixes

<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
- Fixes an issue where PV and EV system bounds were not available to the Power Manager sometimes when requested after startup.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ def __init__( # pylint: disable=too-many-arguments
)

self.bounds_channel: Broadcast[SystemBounds] = Broadcast(
name=f"System Bounds for EV Chargers: {component_ids}"
name=f"System Bounds for EV Chargers: {component_ids}",
resend_latest=True,
)
self.bounds_tracker: EVCSystemBoundsTracker = EVCSystemBoundsTracker(
self.component_ids,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def __init__( # pylint: disable=too-many-arguments
self.resampler_subscription_sender,
)
self.bounds_channel: Broadcast[SystemBounds] = Broadcast(
name=f"System Bounds for PV inverters: {component_ids}"
name=f"System Bounds for PV inverters: {component_ids}",
resend_latest=True,
)
self.bounds_tracker: PVSystemBoundsTracker = PVSystemBoundsTracker(
self.component_ids,
Expand Down
Loading