From 9acf6bd901110fa961153e148d5e01fdeaa6322d Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Fri, 29 Mar 2013 11:05:40 -0400 Subject: [PATCH] Raise the API polling timeout so it is greater than the heartbeat frequency (imported from commit 3a6921a9b5c2c9cdf3ce279291de31d4657d9ae0) --- humbug/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/humbug/__init__.py b/humbug/__init__.py index e4da8ad..7d6d341 100644 --- a/humbug/__init__.py +++ b/humbug/__init__.py @@ -147,7 +147,7 @@ class Client(object): urlparse.urljoin(self.base_url, url), auth=requests.auth.HTTPBasicAuth(self.email, self.api_key), - verify=True, timeout=55, + verify=True, timeout=90, **kwargs) # On 50x errors, try again after a short sleep