Use yaz_gettimeofday
[pazpar2-moved-to-github.git] / src / connection.c
index 08d1501..c2c5677 100644 (file)
@@ -470,7 +470,7 @@ int client_prep_connection(struct client *cl,
 
     if (!co)
     {
-        int max_connections = 30;
+        int max_connections = 0;
         const char *v = session_setting_oneval(client_get_database(cl),
                                                PZ_MAX_CONNECTIONS);
         if (v && *v)
@@ -504,7 +504,7 @@ int client_prep_connection(struct client *cl,
                         num_connections);
                 break;
             }
-            if (num_connections < max_connections)
+            if (max_connections <= 0 || num_connections < max_connections)
             {
                 yaz_log(YLOG_LOG, "num_connections = %d (new); max = %d",
                         num_connections, max_connections);