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: 2 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,5 @@ This release includes a new `ConfigManager` class to simplify managing the confi
- Fix a bug in `BackgroundService` where it won't try to `self.cancel()` and `await self.wait()` if there are no internal tasks. This prevented to properly implement custom stop logic without having to redefine the `stop()` method too.

- Fix a bug where if a string was passed to the `ConfigManagingActor` it would be interpreted as a sequence of 1 character strings.

- Remove a confusing log message in the power distributing actor.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ def _check_request(
return Error(request=request, msg="Empty battery IDs in the request")

for battery in request.component_ids:
_logger.debug("Checking battery %d", battery)
if battery not in self._battery_caches:
msg = (
f"No battery {battery}, available batteries: "
Expand Down
Loading