This message was deleted.
# community-support
s
This message was deleted.
m
Copy code
-Dhttps.socketTimeout=900000 -Dhttps.connectionTimeout=900000 -Dhttp.socketTimeout=900000 -Dhttp.connectionT
imeout=900000
as i see, they are useless
d
Yeah, those properties are Apache HttpClient properties, they don't help for the wrapper download
If a read timeout of 10s isn't enough, you're going to have a really bad time with large downloads in general. You could download manually and copy it into
GRADLE_USER_HOME
yourself, some details here https://gradle-community.slack.com/archives/CAHSN3LDN/p1643769067289629. But if you're also downloading dependencies too, I think you need some kind of caching proxy
Oh, you are using another location:
Copy code
Downloading <https://registry.tcsbank.ru/repository/gradle-distributions/gradle-7.3.3-bin.zip>
...........10%.......
Could not unzip C:\Users\t.p.maerov\.gradle\wrapper\dists\gradle-7.3.3-bin\3i0k0kngugxu3f39187g8j4dr\gradle-7.3.3-bin.zip to C:\Users\t.p.maerov\.gradle\wrapper\di
sts\gradle-7.3.3-bin\3i0k0kngugxu3f39187g8j4dr.
Reason: zip END header not found
Exception in thread "main" java.util.zip.ZipException: zip END header not found
I don't think you're seeing a timeout. I think that host is truncating the binary
m
thanks, i'll go check it out