Don't send batches for now

This commit is contained in:
Neil Booth 2017-01-31 20:05:40 +09:00
parent 60711956d5
commit 97557fa437

View File

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