Skip to content

Commit

Permalink
Increased Timeout time
Browse files Browse the repository at this point in the history
  • Loading branch information
sundhaug92 committed Jun 21, 2012
1 parent 6a59e93 commit ed2005e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified itsCon.v11.suo
Binary file not shown.
4 changes: 2 additions & 2 deletions itsLib/Session.cs
Expand Up @@ -124,8 +124,8 @@ public HttpWebRequest GetHttpWebRequest(string p)
HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create(uri); HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create(uri);
hwr.UserAgent = UserAgent; hwr.UserAgent = UserAgent;


hwr.Timeout = 60 * 1000; hwr.Timeout = 60 * 60 * 1000;
hwr.ContinueTimeout = 60 * 1000; hwr.ContinueTimeout = 60 * 60 * 1000;
hwr.CookieContainer = Cookies; hwr.CookieContainer = Cookies;
return hwr; return hwr;
} }
Expand Down

0 comments on commit ed2005e

Please sign in to comment.