From bbcee027ce87093feac04c7cd68129ffc1895012 Mon Sep 17 00:00:00 2001 From: adityapk00 Date: Sat, 24 Nov 2018 09:46:09 -0800 Subject: [PATCH] fix recieve batch call --- src/connection.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/connection.h b/src/connection.h index 7df95b6..46f6802 100644 --- a/src/connection.h +++ b/src/connection.h @@ -117,10 +117,10 @@ public: static QMap inProgress; QString method = QString::fromStdString(payloadGenerator(payloads[0])["method"]); - if (inProgress.value(method, false)) { - qDebug() << "In progress batch, skipping"; - return; - } + //if (inProgress.value(method, false)) { + // qDebug() << "In progress batch, skipping"; + // return; + //} for (auto item: payloads) { json payload = payloadGenerator(item);