From 95661bc5792f40fb22300e6bf0579cd76b869794 Mon Sep 17 00:00:00 2001 From: Sakari Ikonen <64256562+saikonen@users.noreply.github.com> Date: Thu, 7 Nov 2024 00:38:29 +0200 Subject: [PATCH] fix incorrect table name passing in notify broadcast (#446) --- services/ui_backend_service/api/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ui_backend_service/api/notify.py b/services/ui_backend_service/api/notify.py index 69d97332..d77fa799 100644 --- a/services/ui_backend_service/api/notify.py +++ b/services/ui_backend_service/api/notify.py @@ -98,7 +98,7 @@ async def handle_trigger_msg(self, msg: str): # also keepalive for run heartbeats. self.event_emitter.emit('run-heartbeat', 'update', data) # also broadcast as a run heartbeat update, as otherwise these receive no updates - await _broadcast(self.event_emitter, "UPDATE", self.db.run_table_postgres.table_name, data) + await _broadcast(self.event_emitter, "UPDATE", self.db.run_table_postgres, data) # Notify when Run parameters are ready. if operation == "INSERT" and \