File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ Changelog
44
55Notable changes to this project will be documented in this file.
66
7+ ********************
8+ v2.8.13 (2025-09-09)
9+ ********************
10+
11+ Fixed
12+ =====
13+
14+ - Fix crash caused by incorrect type of default logging configuration in hub app
15+
16+ ----
17+
718********************
819v2.8.12 (2025-08-18)
920********************
Original file line number Diff line number Diff line change @@ -78,12 +78,10 @@ class HubApp(ConfigurableApp):
7878 name = "hub"
7979 _config_defaults : ClassVar [dict [str , Any ]] = {
8080 "log_level_stdout" : "info" ,
81- "log_config" : """
82- {
83- "handlers": { "stdout": {"share_stream": false} },
84- "loggers": { "asyncssh": { "handlers":["stdout"], "level": "DEBUG" } }
85- }
86- """ ,
81+ "log_config" : {
82+ "handlers" : {"stdout" : {"share_stream" : False }},
83+ "loggers" : {"asyncssh" : {"handlers" : ["stdout" ], "level" : "DEBUG" }},
84+ },
8785 }
8886
8987 @classmethod
You can’t perform that action at this time.
0 commit comments