diff --git a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PlatformSampleSettings.approved.txt b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PlatformSampleSettings.approved.txt index e0226b3303..136ca67478 100644 --- a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PlatformSampleSettings.approved.txt +++ b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PlatformSampleSettings.approved.txt @@ -7,7 +7,6 @@ "ValidateConfiguration": true, "ExternalIntegrationsDispatchingBatchSize": 100, "DisableExternalIntegrationsPublishing": false, - "DisableRavenDBPerformanceCounters": false, "SkipQueueCreation": false, "RunCleanupBundle": false, "RootUrl": "http://localhost:8888/", diff --git a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClr.approved.txt b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClr.approved.txt index a57d6b8c5e..857d2fd62b 100644 --- a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClr.approved.txt +++ b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClr.approved.txt @@ -72,7 +72,6 @@ namespace ServiceBus.Management.Infrastructure.Settings public string DbPath { get; set; } public bool DisableExternalIntegrationsPublishing { get; set; } public bool DisableHealthChecks { get; set; } - public bool DisableRavenDBPerformanceCounters { get; set; } public string EmailDropFolder { get; set; } public bool EnableFullTextSearchOnBodies { get; set; } public string ErrorLogQueue { get; set; } diff --git a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClrHosting.approved.txt b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClrHosting.approved.txt index 07b8e9e019..1f815112f4 100644 --- a/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClrHosting.approved.txt +++ b/src/ServiceControl.UnitTests/ApprovalFiles/APIApprovals.PublicClrHosting.approved.txt @@ -29,7 +29,6 @@ namespace ServiceBus.Management.Infrastructure.Settings public string DbPath { get; set; } public bool DisableExternalIntegrationsPublishing { get; set; } public bool DisableHealthChecks { get; set; } - public bool DisableRavenDBPerformanceCounters { get; set; } public string EmailDropFolder { get; set; } public bool EnableFullTextSearchOnBodies { get; set; } public string ErrorLogQueue { get; set; } diff --git a/src/ServiceControl/Infrastructure/Settings/Settings.cs b/src/ServiceControl/Infrastructure/Settings/Settings.cs index cc928ee2bc..6d8bf0c2af 100644 --- a/src/ServiceControl/Infrastructure/Settings/Settings.cs +++ b/src/ServiceControl/Infrastructure/Settings/Settings.cs @@ -74,8 +74,6 @@ public Settings(string serviceName = null) public bool DisableExternalIntegrationsPublishing { get; set; } - public bool DisableRavenDBPerformanceCounters { get; set; } - public bool SkipQueueCreation { get; set; } public bool RunCleanupBundle { get; set; }