We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb9f500 commit 3d641e3Copy full SHA for 3d641e3
1 file changed
receptor/protocol.py
@@ -52,6 +52,11 @@ async def watch_queue(self):
52
while not self.transport.is_closing():
53
try:
54
msg = await buffer_obj.get()
55
+ except Exception:
56
+ logger.exception("Unhandled error when fetch from buffer for %s", self.id)
57
+ continue
58
+
59
+ try:
60
self.transport.write(msg + DELIM)
61
except Exception:
62
logger.exception("Error received trying to write to %s", self.id)
0 commit comments