chore: change default setting (#1087)

live_output = True
This commit is contained in:
Tim
2025-07-17 17:19:10 +08:00
committed by GitHub
parent 79d21589c1
commit e389b4a396
+1 -1
View File
@@ -450,7 +450,7 @@ class LocalConf(EnvConf):
"""path like <path1>:<path2>:<path3>, which will be prepend to bin path."""
retry_count: int = 0 # retry count for; run `retry_count + 1` times
live_output: bool = False
live_output: bool = True
ASpecificLocalConf = TypeVar("ASpecificLocalConf", bound=LocalConf)