Skip to content

Commit

Permalink
fix: Add highly generous timeout for post_run_csv
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Nov 29, 2024
1 parent c7592c1 commit 0ff3d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neps/status/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def _save_data_to_csv(
config_data_df: The DataFrame containing configuration data.
run_data_df: The DataFrame containing additional run data.
"""
with locker(poll=2, timeout=120):
with locker(poll=2, timeout=600):
try:
pending_configs = run_data_df.loc["num_pending_configs", "value"]
pending_configs_with_worker = run_data_df.loc[
Expand Down

0 comments on commit 0ff3d41

Please sign in to comment.