[mapserver-commits] r12365 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 07:19:58 EDT 2011


Author: tbonfort
Date: 2011-08-26 04:19:58 -0700 (Fri, 26 Aug 2011)
New Revision: 12365

Modified:
   trunk/mapserver/mapcache/src/http.c
Log:
fix typo: was falling back on prxying in the case of full wms request
thomas.bonfort | 2011-05-23 13:29:12 +0200 (Mon, 23 May 2011)

Modified: trunk/mapserver/mapcache/src/http.c
===================================================================
--- trunk/mapserver/mapcache/src/http.c	2011-08-26 11:19:54 UTC (rev 12364)
+++ trunk/mapserver/mapcache/src/http.c	2011-08-26 11:19:58 UTC (rev 12365)
@@ -46,8 +46,9 @@
 
    curl_easy_setopt(curl_handle, CURLOPT_ERRORBUFFER, error_msg);
    curl_easy_setopt(curl_handle, CURLOPT_FOLLOWLOCATION, 1);
-   curl_easy_setopt(curl_handle, CURLOPT_CONNECTTIMEOUT, 5);
+   curl_easy_setopt(curl_handle, CURLOPT_CONNECTTIMEOUT, 10);
    curl_easy_setopt(curl_handle, CURLOPT_FAILONERROR, 1);
+   curl_easy_setopt(curl_handle, CURLOPT_NOSIGNAL, 1);
 
 
    struct curl_slist *curl_headers=NULL;



More information about the mapserver-commits mailing list