Don't fail on unicode debug for config updates

This commit is contained in:
Nicolas Mowen
2025-08-16 10:20:33 -05:00
committed by Blake Blackshear
parent 2f4d7353f4
commit 0d5a49ab82
+1 -1
View File
@@ -50,7 +50,7 @@ class ConfigSubscriber:
return (topic, obj)
else:
return (None, None)
except zmq.ZMQError:
except (zmq.ZMQError, UnicodeDecodeError):
return (None, None)
def stop(self) -> None: