From 82dfd5a45a82f64f9aa171b8e57f69a1a23e07be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Neunh=C3=B6ffer?= Date: Sat, 1 Jul 2017 00:26:06 +0200 Subject: [PATCH] Fix a hangup in VST. (#2705) The problem happened when the two first chunks of a VST message arrived together on a connection that was newly switched to VST. --- arangod/GeneralServer/HttpCommTask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangod/GeneralServer/HttpCommTask.cpp b/arangod/GeneralServer/HttpCommTask.cpp index 7c34997f8a..3afd9b8c87 100644 --- a/arangod/GeneralServer/HttpCommTask.cpp +++ b/arangod/GeneralServer/HttpCommTask.cpp @@ -294,7 +294,7 @@ bool HttpCommTask::processRead(double startTime) { _readBuffer.length() - 11); { MUTEX_LOCKER(locker, commTask->_lock); - commTask->processRead(startTime); + commTask->processAll(); } commTask->start(); return false;