Skip to content

Commit

Permalink
Bumped the timeout for server active check
Browse files Browse the repository at this point in the history
  • Loading branch information
topfs2 committed Jun 10, 2012
1 parent 511e1c8 commit 291b231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Expand Up @@ -21,7 +21,7 @@ def uploadMedia(media, data):

def serverActive():
try:
ret = urllib2.urlopen(server_base_address + "/active", timeout = 2)
ret = urllib2.urlopen(server_base_address + "/active", timeout = 10)
if ret == None:
return False
else:
Expand Down

0 comments on commit 291b231

Please sign in to comment.