We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54735f7 commit a18650fCopy full SHA for a18650f
RELEASE_NOTES.md
@@ -6,7 +6,10 @@
6
7
## Upgrading
8
9
-- The `LoggingConfigUpdater` was renamed to `LoggingConfigUpdatingActor` to follow the actor naming convention.
+- `LoggingConfigUpdater`
10
+
11
+ * Renamed to `LoggingConfigUpdatingActor` to follow the actor naming convention.
12
+ * Make all arguments to the constructor keyword-only.
13
14
## New Features
15
src/frequenz/sdk/config/_logging_actor.py
@@ -133,6 +133,7 @@ async def run() -> None:
133
134
def __init__(
135
self,
136
+ *,
137
config_recv: Receiver[Mapping[str, Any]],
138
log_format: str = "%(asctime)s %(levelname)-8s %(name)s:%(lineno)s: %(message)s",
139
log_datefmt: str = "%Y-%m-%dT%H:%M:%S%z",
0 commit comments