Raise the offline documentation download timeout, for slow connections.

[DEVELOPMENT ENVIRONMENT]
* BUG: Raise the offline documentation download timeout, for slow connections.
This commit is contained in:
gambas 2018-11-07 17:11:12 +01:00
parent a0af45675e
commit 682245ae88

View file

@ -1311,7 +1311,7 @@ Public Sub btnDownloadHelp_Click()
hClient = New HttpClient As "hClient"
hClient.Async = False
hClient.Timeout = 20
hClient.Timeout = 900 ' 15 mn ~ 34kB/s for a 30 MB archive
hClient.URL = "http://gambaswiki.org/gambas-wiki.tar.bz2"
hClient.Get([], sFile)