From a2f5f7730fb602f256bfc057e4e49fedf6c73985 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 27 Aug 2018 11:20:09 -0400 Subject: [PATCH] add azure to signalRServerBuilder --- src/Notifications/Startup.cs | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/Notifications/Startup.cs b/src/Notifications/Startup.cs index ad33798b47..db310288b6 100644 --- a/src/Notifications/Startup.cs +++ b/src/Notifications/Startup.cs @@ -49,19 +49,16 @@ namespace Bit.Notifications }); // SignalR + var signalRServerBuilder = services.AddSignalR().AddMessagePackProtocol(options => + { + options.FormatterResolvers = new List() + { + MessagePack.Resolvers.ContractlessStandardResolver.Instance + }; + }); if(!string.IsNullOrWhiteSpace(globalSettings.Notifications?.AzureSignalRConnectionString)) { - services.AddSignalR().AddAzureSignalR(globalSettings.Notifications.AzureSignalRConnectionString); - } - else - { - services.AddSignalR().AddMessagePackProtocol(options => - { - options.FormatterResolvers = new List() - { - MessagePack.Resolvers.ContractlessStandardResolver.Instance - }; - }); + signalRServerBuilder.AddAzureSignalR(globalSettings.Notifications.AzureSignalRConnectionString); } services.AddSingleton(); services.AddSingleton();