Skip to content
Merged
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 trinity/common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,8 +733,8 @@ class ExplorerConfig:
# for workflow runner
# number of workflow runners.
runner_per_model: int = 8 # number of runners per each rollout model
runner_prepare_concurrency: int = 8 # cap concurrent prepares (glibc getenv race)
runner_prepare_max_retries: int = 2 # retry prepare on transient crash
runner_prepare_concurrency: int = 128 # cap concurrent prepares (glibc getenv race)
runner_prepare_max_retries: int = 3 # retry prepare on transient crash
max_timeout: int = 1800 # wait each task for 30 minutes at most
max_retry_times: int = 2 # retry each task for 2 times if it fails or timeout
env_vars: dict = field(default_factory=dict) # environment variables for workflow runner
Expand Down
Loading