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

Commit

Permalink
[Fix] validation software timeout (#534)
Browse files Browse the repository at this point in the history
* clear cookies on login, bump minor

* fix validation value

---------

Co-authored-by: sbasan <[email protected]>
  • Loading branch information
cicharka and sbasan committed Mar 22, 2024
1 parent 69d1080 commit 1bb44b7
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 1bb44b7

Please sign in to comment.