You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the worker timeout for addprocs can only be configured via the JULIA_WORKER_TIMEOUT environment variable. It would be more convenient to have a timeout keyword argument directly in the addprocs function.
Proposed API:
addprocs(4; timeout=120.0) # 120 second timeout
This would be more ergonomic than having to set environment variables before calling addprocs.