Skip to content

Commit

Permalink
fix(replicator): allow some more time for fetching serial list
Browse files Browse the repository at this point in the history
  • Loading branch information
peterthomassen committed Nov 26, 2023
1 parent 2c84a6c commit 27043c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion replicator/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _retrieve(self):
# Throws Timeout exception if nothing is received for `timeout` seconds
r = requests.get(
'https://{}/api/v1/serials/'.format(os.environ['DESECSTACK_VPN_SERVER']),
timeout=10,
timeout=30,
verify=ssl_verify,
)
if r.status_code not in range(200, 300):
Expand Down

0 comments on commit 27043c0

Please sign in to comment.