From e105b26fa6a62d36f553ff9c02a41b4da2768e1c Mon Sep 17 00:00:00 2001 From: Callum Oakley Date: Tue, 18 Jul 2017 16:52:51 +0100 Subject: [PATCH] bump notification_client timeout to 30s --- pusher/notification_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pusher/notification_client.py b/pusher/notification_client.py index ccf24bb..0869efb 100644 --- a/pusher/notification_client.py +++ b/pusher/notification_client.py @@ -20,7 +20,7 @@ class NotificationClient(Client): def __init__( self, app_id, key, secret, ssl=True, host=None, port=None, - timeout=5, cluster=None, json_encoder=None, json_decoder=None, + timeout=30, cluster=None, json_encoder=None, json_decoder=None, backend=None, **backend_options): super(NotificationClient, self).__init__( app_id, key, secret, ssl, host, port, timeout, cluster,