Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

[Fix] validation software timeout #534

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion catalystwan/endpoints/configuration_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def check_download_timeout(cls, download_timeout_str: str):
@validator("activate_timeout")
def check_activate_timeout(cls, activate_timeout_str: str):
activate_timeout = int(activate_timeout_str)
if activate_timeout < 60 or activate_timeout > 180:
if activate_timeout < 30 or activate_timeout > 180:
raise ValueError("activate timeout should be in range 30-180")
return activate_timeout_str

Expand Down
Loading