From 85197704f6854c2b56638d8e944637d163a8090a Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 2 Mar 2026 20:00:45 +0800 Subject: [PATCH] bugfix --- appPublic/zmqapi.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/appPublic/zmqapi.py b/appPublic/zmqapi.py index 3c380ac..420aafc 100755 --- a/appPublic/zmqapi.py +++ b/appPublic/zmqapi.py @@ -10,7 +10,7 @@ from .worker import awaitify from zmq.asyncio import Context from zmq.utils.monitor import parse_monitor_message from appPublic.jsonConfig import getConfig -from appPublic.log import exception +from appPublic.log import exception, debug async def run_proxy(): config = getConfig() @@ -26,17 +26,18 @@ async def run_proxy(): backend = ctx.socket(zmq.XPUB) backend.bind(subscribe_url) # 订阅者往这里 connect - print(f"【Proxy】启动:Pub 连 {publish_url},Sub 连 {subscribe_url}") + debug(f"【Proxy】启动:Pub 连 {publish_url},Sub 连 {subscribe_url}") # 核心:启动内置代理,它会自动把 frontend 接收的消息广播给 backend # 并且把 backend 的订阅信息同步给 frontend try: await awaitify(zmq.proxy)(frontend, backend) except Exception as e: - print(f"Proxy 异常退出: {e}") + exception(f"Proxy 异常退出: {e}{format_exc()") finally: frontend.close() backend.close() ctx.term() + debug('run_proxy stopped...........') async def zmq_subcribe(special_key: str, callback=None): config = getConfig() @@ -48,12 +49,13 @@ async def zmq_subcribe(special_key: str, callback=None): # 设置过滤:只接收以 special_key 开头的消息 sock.setsockopt_string(zmq.SUBSCRIBE, special_key) - print(f"【服务端】启动,仅等待 Key 为 '{special_key}' 的消息...") + debug(f"【服务端】启动,仅等待 Key 为 '{special_key}' 的消息...") content = '' try: while True: # 接收消息(multipart 格式,第一部分是 key,第二部分是内容) + debug('## RECEIVING message on {special_key}') msg = await sock.recv_multipart() key = msg[0].decode() content = msg[1].decode() @@ -66,6 +68,7 @@ async def zmq_subcribe(special_key: str, callback=None): exception(f'{e}\n{format_exc()}') except asyncio.CancelledError: + exception(f'Cancelled .......') pass finally: sock.close()