Skip to content

Commit f3b4146

Browse files
committed
Don't warn for changing dispatch parameters: It's a normal action
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 94b8efe commit f3b4146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frequenz/dispatch/_actor_dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ async def _start_actor(self, dispatch: Dispatch) -> None:
181181
if self._updates_sender is not None:
182182
sent_str = ", sent a dispatch update instead of creating a new actor"
183183
await self._updates_sender.send(dispatch_update)
184-
_logger.warning(
184+
_logger.info(
185185
"Actor for dispatch type %r is already running%s",
186186
dispatch.type,
187187
sent_str,

0 commit comments

Comments
 (0)