File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments