From a09dfe5d4db1ad60158e5fb15b45cf5fdcab2ccb Mon Sep 17 00:00:00 2001 From: j Date: Thu, 23 Mar 2017 10:48:42 +0100 Subject: [PATCH] higher timeout --- ox/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ox/cache.py b/ox/cache.py index 3597067..f55ba8e 100644 --- a/ox/cache.py +++ b/ox/cache.py @@ -443,7 +443,7 @@ class MemCache(KVCache): f, self.host = cache_path().split(':', 1) self.backend = pylibmc.Client([self.host]) - self.backend.behaviors['connect_timeout'] = 10000 + self.backend.behaviors['connect_timeout'] = 60000 class RedisCache(KVCache):