From b106fd22fbb0ef08e4a5ca9a5f0f1be926edf513 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 3 Apr 2020 08:39:59 -0400 Subject: [PATCH] Only set channel prefix. Use machine name on counter (#687) --- src/Notifications/Jobs/LogConnectionCounterJob.cs | 5 +++-- src/Notifications/Startup.cs | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Notifications/Jobs/LogConnectionCounterJob.cs b/src/Notifications/Jobs/LogConnectionCounterJob.cs index 0a819d1513..b736bd44f4 100644 --- a/src/Notifications/Jobs/LogConnectionCounterJob.cs +++ b/src/Notifications/Jobs/LogConnectionCounterJob.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System; +using System.Threading.Tasks; using Bit.Core; using Bit.Core.Jobs; using Microsoft.Extensions.Logging; @@ -21,7 +22,7 @@ namespace Bit.Notifications.Jobs protected override Task ExecuteJobAsync(IJobExecutionContext context) { _logger.LogInformation(Constants.BypassFiltersEventId, - "Connection count: {0}", _connectionCounter.GetCount()); + "Connection count for server {0}: {1}", Environment.MachineName, _connectionCounter.GetCount()); return Task.FromResult(0); } } diff --git a/src/Notifications/Startup.cs b/src/Notifications/Startup.cs index ada77819d4..076e805012 100644 --- a/src/Notifications/Startup.cs +++ b/src/Notifications/Startup.cs @@ -62,7 +62,6 @@ namespace Bit.Notifications signalRServerBuilder.AddStackExchangeRedis(globalSettings.Notifications.RedisConnectionString, options => { - options.Configuration.ClientName = "Notifications"; options.Configuration.ChannelPrefix = "Notifications"; }); }