From f75174d8effeffa0c9aa3884ef76a215c1abc012 Mon Sep 17 00:00:00 2001 From: Yusuf Ali Date: Mon, 27 Jan 2025 23:11:57 -0500 Subject: [PATCH] fix(config): bind to event exchange configuration to event exchange is in worker not bus --- servc/svc/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servc/svc/config/__init__.py b/servc/svc/config/__init__.py index 62f3728..e38aea7 100644 --- a/servc/svc/config/__init__.py +++ b/servc/svc/config/__init__.py @@ -17,7 +17,7 @@ "conf.bus.route": os.getenv("CONF__BUS__QUEUE", os.getenv("QUEUE_NAME", "test")), "conf.bus.routemap": json.loads(os.getenv("CONF__BUS__ROUTEMAP", json.dumps({}))), "conf.bus.prefix": "", - "conf.bus.bindtoeventexchange": True, + "conf.worker.bindtoeventexchange": True, } DOT_MARKER = os.getenv("SERVC_DOT_MARKER", "_DOT_")