Skip to content
Closed
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
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
## Bug Fixes

- Fix PV power distribution excluding inverters that haven't sent any data since the application started.
- Change consumer power formula to use 0 instead of None if any component is not sending data. Now power is sum of power in all working components.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def consumer_component(component: Component) -> bool:

builder.push_component_metric(
component.component_id,
nones_are_zeros=component.category != ComponentCategory.METER,
nones_are_zeros=True,
)

return builder.build()