From 3832652dc9a9c17042011e5d2693adf0ab30028c Mon Sep 17 00:00:00 2001 From: Ruben van de Ven Date: Sat, 22 Feb 2020 02:02:55 +0300 Subject: [PATCH] Test higher watermark --- hugvey/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugvey/client.py b/hugvey/client.py index af26730..6e64553 100644 --- a/hugvey/client.py +++ b/hugvey/client.py @@ -216,7 +216,7 @@ class VoiceServer(object): try: address = "tcp://*:{}".format(self.config['voice']['port'] + self.hugvey.id) self.voice_socket = self.ctx.socket(zmq.PUB) - self.voice_socket.set_hwm(15) + self.voice_socket.set_hwm(25) # not too high, otherwise we flood the network after a short interuption (with stuff that is 'old' anyway) self.voice_socket.bind(address) logger.info(