From 97557fa4374b0dbfb489fcca8667a83e53ba0d36 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 31 Jan 2017 20:05:40 +0900 Subject: [PATCH] Don't send batches for now --- lib/jsonrpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jsonrpc.py b/lib/jsonrpc.py index fb2240d..13f1895 100644 --- a/lib/jsonrpc.py +++ b/lib/jsonrpc.py @@ -610,7 +610,7 @@ class JSONSessionBase(util.LoggedClass): '''Send an iterable of (method, params) notification pairs. A 1-tuple is also valid in which case there are no params.''' - if self.version.HAS_BATCHES: + if False and self.version.HAS_BATCHES: parts = [self.notification_bytes(*pair) for pair in mp_iterable] self.send_binary(self.version.batch_bytes(parts)) else: