Skip to content

Commit

Permalink
fix: Add timeout for locking post_run_csv
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Nov 29, 2024
1 parent c0b5b77 commit c7592c1
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):
with locker(poll=2, timeout=120):
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 c7592c1

Please sign in to comment.