Skip to content

Commit e3cad89

Browse files
committed
fix: default cooldown admission to 10s
1 parent 971438b commit e3cad89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/aind_ephys_portal/session_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def get_pending_load_pct():
345345

346346
def get_admission_cooldown_s():
347347
"""Seconds to wait between successive admissions. Env-overridable."""
348-
return float(os.environ.get("ADMISSION_COOLDOWN_S", "3.0"))
348+
return float(os.environ.get("ADMISSION_COOLDOWN_S", "10.0"))
349349

350350

351351
def record_admission():

0 commit comments

Comments
 (0)