Skip to content

Commit c795bbf

Browse files
Apply suggestions from code review
Co-authored-by: daniel-zullo-frequenz <[email protected]> Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 5cd4b40 commit c795bbf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
```python
1212
# Old
13-
actor = ConfigManagingActor(config_file="config.yaml")
13+
actor = ConfigManagingActor(config_file="config.toml")
1414
# New
15-
actor = ConfigManagingActor(config_files=["config.yaml"])
15+
actor = ConfigManagingActor(config_files=["config.toml"])
1616
```
1717

1818
## New Features

src/frequenz/sdk/config/_config_managing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ConfigManagingActor(Actor):
2525
When the actor is started the configuration files will be read and sent to the
2626
output sender. Then the actor will start monitoring the files for updates.
2727
28-
If no configuration file could be read, the actor will raise a exception.
28+
If no configuration file could be read, the actor will raise an exception.
2929
3030
The configuration files are read in the order of the paths, so the last path will
3131
override the configuration set by the previous paths. Dict keys will be merged

0 commit comments

Comments
 (0)