Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/torchrunx/integrations/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def add_torchrunx_argument_group(parser: ArgumentParser) -> None:
group.add_argument(
"--agent-timeout",
type=int,
default=180,
help="Agent communication timeout in seconds. Default: 180.",
default=60,
help="Agent communication timeout in seconds. Default: 60.",
)

group.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion src/torchrunx/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Launcher:
Use GLOO for CPU backend. ``None`` for no process group."""
worker_timeout: int = 600
"""Worker process group timeout (seconds)."""
agent_timeout: int = 180
agent_timeout: int = 60
"""Agent communication timeout (seconds)."""
copy_env_vars: tuple[str, ...] = DEFAULT_ENV_VARS_FOR_COPY
"""Environment variables to copy from the launcher process to workers.
Expand Down