From 8cf021630e825b6551e693b64490f68dd163eefa Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 11 Jan 2024 16:00:35 -0700 Subject: [PATCH] Use localhost for reply and request --- frigate/comms/inter_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/comms/inter_process.py b/frigate/comms/inter_process.py index cdd478477..55e0d73c4 100644 --- a/frigate/comms/inter_process.py +++ b/frigate/comms/inter_process.py @@ -19,7 +19,7 @@ class InterProcessCommunicator(Communicator): ) self.context = zmq.Context() self.socket = self.context.socket(zmq.REP) - self.socket.bind(f"tcp://*:{INTER_PROCESS_COMM_PORT}") + self.socket.bind(f"tcp://127.0.0.1:{INTER_PROCESS_COMM_PORT}") self.stop_event: MpEvent = mp.Event() def publish(self, topic: str, payload: str, retain: bool) -> None: