Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Enable queue_signalr_events (#2047)
Browse files Browse the repository at this point in the history
  • Loading branch information
tevoinea authored Jun 14, 2022
1 parent d915813 commit 447f181
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ApiService/ApiService/QueueSignalREvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public QueueSignalREvents(ILogTracerFactory loggerFactory) {
_loggerFactory = loggerFactory;
}

//[Function("QueueSignalREvents")]
//[SignalROutput(HubName = "dashboard")]
[Function("QueueSignalREvents")]
[SignalROutput(HubName = "dashboard")]
public static string Run(
[QueueTrigger("signalr-events-refactored", Connection = "AzureWebJobsStorage")] string msg) {
[QueueTrigger("signalr-events", Connection = "AzureWebJobsStorage")] string msg) {
return msg;
}
}

0 comments on commit 447f181

Please sign in to comment.