diff --git a/common/src/main/java/com/xypower/common/FileDownloader.java b/common/src/main/java/com/xypower/common/FileDownloader.java index ab0f0626..ccd6ba18 100644 --- a/common/src/main/java/com/xypower/common/FileDownloader.java +++ b/common/src/main/java/com/xypower/common/FileDownloader.java @@ -33,8 +33,8 @@ public class FileDownloader { URL url = new URL(urlString); connection = (HttpURLConnection) url.openConnection(); connection.setRequestProperty("Accept-Encoding", "gzip"); - connection.setConnectTimeout(5000); - connection.setReadTimeout(120000); + connection.setConnectTimeout(10000); + connection.setReadTimeout(600000); connection.setDoInput(true); connection.connect(); final File temp = new File(filePath);