Additional change to ensure FLASH storage goes through the multithread path

Former-commit-id: 422ea0723f0b8718f28ef9c1cc4d5f56d374af46
This commit is contained in:
John Sully 2021-10-20 03:13:36 +00:00
parent d57883bf64
commit 43a62493f8

View File

@ -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 {