From 44e2f9e52d5152c53800fccfc91bfcec5fa4f844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Tue, 8 Sep 2015 08:55:09 +0000 Subject: [PATCH] Increasing stack size in Admin --- lib/MySQL_Session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index f1562d0c1..720bd9bd9 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -625,7 +625,7 @@ handler_again: pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - pthread_attr_setstacksize (&attr, 128*1024); + pthread_attr_setstacksize (&attr, 256*1024); pthread_t pt; pthread_create(&pt, &attr, &kill_query_thread, ka); }