From 9955ecd94a9847495f7cab9b41c04dc3eb60e55a Mon Sep 17 00:00:00 2001 From: John Sully Date: Wed, 20 Oct 2021 03:13:36 +0000 Subject: [PATCH] Additional change to ensure FLASH storage goes through the multithread path Former-commit-id: 422ea0723f0b8718f28ef9c1cc4d5f56d374af46 --- src/networking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.cpp b/src/networking.cpp index 1638328c0..72b2ec59e 100644 --- a/src/networking.cpp +++ b/src/networking.cpp @@ -2694,7 +2694,7 @@ void readQueryFromClient(connection *conn) { return; } - if (cserver.cthreads > 1) { + if (cserver.cthreads > 1 || g_pserver->m_pstorageFactory) { parseClientCommandBuffer(c); serverTL->vecclientsProcess.push_back(c); } else {