Skip to content

Commit 95661bc

Browse files
authoredNov 6, 2024
fix incorrect table name passing in notify broadcast (#446)
1 parent 44ff0ac commit 95661bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎services/ui_backend_service/api/notify.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ async def handle_trigger_msg(self, msg: str):
9898
# also keepalive for run heartbeats.
9999
self.event_emitter.emit('run-heartbeat', 'update', data)
100100
# also broadcast as a run heartbeat update, as otherwise these receive no updates
101-
await _broadcast(self.event_emitter, "UPDATE", self.db.run_table_postgres.table_name, data)
101+
await _broadcast(self.event_emitter, "UPDATE", self.db.run_table_postgres, data)
102102

103103
# Notify when Run parameters are ready.
104104
if operation == "INSERT" and \

0 commit comments

Comments
 (0)