[http][client] Increased timeouts to improve download

This commit is contained in:
Alex Zolotarev 2014-01-24 23:22:24 +03:00 committed by Alex Zolotarev
parent 46132ee521
commit cb00765716
2 changed files with 5 additions and 3 deletions

View file

@ -20,6 +20,8 @@ class DownloadChunkTask extends AsyncTask<Void, byte[], Boolean>
{
private static final String TAG = "DownloadChunkTask";
private static final int TIMEOUT_IN_SECONDS = 60;
private long m_httpCallbackID;
private String m_url;
private long m_beg;
@ -138,8 +140,8 @@ class DownloadChunkTask extends AsyncTask<Void, byte[], Boolean>
return false;
urlConnection.setUseCaches(false);
urlConnection.setConnectTimeout(15 * 1000);
urlConnection.setReadTimeout(15 * 1000);
urlConnection.setConnectTimeout(TIMEOUT_IN_SECONDS * 1000);
urlConnection.setReadTimeout(TIMEOUT_IN_SECONDS * 1000);
// Set user agent with unique client id
urlConnection.setRequestProperty("User-Agent", m_userAgent);

View file

@ -10,7 +10,7 @@
#include "../iphone/Maps/Classes/MapsAppDelegate.h"
#endif
#define TIMEOUT_IN_SECONDS 15.0
#define TIMEOUT_IN_SECONDS 60.0
@implementation HttpThread