From c8e249b05e274cb8a37277b36ae608383e7d7a39 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 20 Mar 2020 23:05:08 -0400 Subject: [PATCH] client name --- src/Notifications/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Notifications/Startup.cs b/src/Notifications/Startup.cs index 9032d2c2fd..4c2362a484 100644 --- a/src/Notifications/Startup.cs +++ b/src/Notifications/Startup.cs @@ -62,7 +62,7 @@ namespace Bit.Notifications signalRServerBuilder.AddStackExchangeRedis(globalSettings.Notifications.RedisConnectionString, options => { - options.Configuration.ChannelPrefix = "Notifications"; + options.Configuration.ClientName = "Notifications"; }); } services.AddSingleton();