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 @@ -55,8 +55,8 @@ def add_torchrunx_argument_group(parser: ArgumentParser) -> None:
55
55
group .add_argument (
56
56
"--agent-timeout" ,
57
57
type = int ,
58
- default = 180 ,
59
- help = "Agent communication timeout in seconds. Default: 180 ." ,
58
+ default = 60 ,
59
+ help = "Agent communication timeout in seconds. Default: 60 ." ,
60
60
)
61
61
62
62
group .add_argument (
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class Launcher:
63
63
Use GLOO for CPU backend. ``None`` for no process group."""
64
64
worker_timeout : int = 600
65
65
"""Worker process group timeout (seconds)."""
66
- agent_timeout : int = 180
66
+ agent_timeout : int = 60
67
67
"""Agent communication timeout (seconds)."""
68
68
copy_env_vars : tuple [str , ...] = DEFAULT_ENV_VARS_FOR_COPY
69
69
"""Environment variables to copy from the launcher process to workers.
You can’t perform that action at this time.
0 commit comments