]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
up max db buffer size in core sql
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 24 Oct 2012 00:38:03 +0000 (20:38 -0400)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 24 Oct 2012 00:38:03 +0000 (20:38 -0400)
src/switch_core.c

index 82b08e3808a6c66e09920e3ca85df0712d8aebff..8f0895fb9b505369b0c349b90de816d2a927c786 100644 (file)
@@ -1471,7 +1471,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_init(switch_core_flag_t flags, switc
        
        runtime.runlevel++;
        runtime.sql_buffer_len = 1024 * 32;
-       runtime.max_sql_buffer_len = 1024 * 1024;
+       runtime.max_sql_buffer_len = 1024 * 1024 * 10;
        runtime.dummy_cng_frame.data = runtime.dummy_data;
        runtime.dummy_cng_frame.datalen = sizeof(runtime.dummy_data);
        runtime.dummy_cng_frame.buflen = sizeof(runtime.dummy_data);