Shift the default network timeout back to 60 seconds

There have been a number of reports from people that were having trouble
with 30 seconds
This commit is contained in:
Damien Elmes 2024-01-11 14:31:30 +10:00
parent 86687b4148
commit 4ccb814fb3

View file

@ -703,4 +703,4 @@ create table if not exists profiles
self.profile["networkTimeout"] = timeout_secs self.profile["networkTimeout"] = timeout_secs
def network_timeout(self) -> int: def network_timeout(self) -> int:
return self.profile.get("networkTimeout") or 30 return self.profile.get("networkTimeout") or 60