Skip to content

Commit

Permalink
Increase timeout for starting the worker process
Browse files Browse the repository at this point in the history
  • Loading branch information
kgodlewski committed Jan 10, 2025
1 parent 9bb6440 commit 06953fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neptune_scale/api/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def __init__(
self._errors_monitor.start()
with self._lock:
self._sync_process.start()
self._process_link.start(on_link_closed=self._on_child_link_closed)
self._process_link.start(on_link_closed=self._on_child_link_closed, timeout=30)

self._exit_func: Optional[Callable[[], None]] = atexit.register(self._close)

Expand Down

0 comments on commit 06953fd

Please sign in to comment.