chore(worker): drop the unsubscribed RunCreated broadcast

This commit is contained in:
mika kuns
2026-08-07 09:55:21 +02:00
parent 1e383e1c1f
commit 66630d5ce2
3 changed files with 0 additions and 6 deletions
@@ -40,9 +40,6 @@ public sealed class HubBroadcaster : IPrimeBroadcaster, IRefineBroadcaster
public Task ListUpdated(string listId) =>
_hub.Clients.All.SendAsync("ListUpdated", listId);
public Task RunCreated(string taskId, int runNumber, bool isRetry) =>
_hub.Clients.All.SendAsync("RunCreated", taskId, runNumber, isRetry);
public Task UsageUpdated(UsageSnapshotDto snapshot) =>
_hub.Clients.All.SendAsync("UsageUpdated", snapshot);