increase number of retries
authorJean-Philippe Orsini <jeanfi@gmail.com>
Sat, 1 Mar 2014 17:25:12 +0000 (17:25 +0000)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Sat, 1 Mar 2014 17:25:12 +0000 (17:25 +0000)
src/cache.c
src/http.c

index b00ddb5..10ac3b7 100644 (file)
@@ -59,7 +59,7 @@ const void *cache_get(const char *key)
                        return cache.entries[i].value;
                }
 
-       log_debug(_("memory cache miss %s"), key);
+       log_fct(_("memory cache miss %s"), key);
 
        return NULL;
 }
index 4370f25..fd65d91 100644 (file)
@@ -30,7 +30,7 @@
 #include "http.h"
 #include <plog.h>
 
-static const int DEFAULT_FETCH_RETRIES = 10;
+static const int DEFAULT_FETCH_RETRIES = 15;
 
 static CURL *curl;