Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"ValidateConfiguration": true,
"ExternalIntegrationsDispatchingBatchSize": 100,
"DisableExternalIntegrationsPublishing": false,
"DisableRavenDBPerformanceCounters": false,
"SkipQueueCreation": false,
"RunCleanupBundle": false,
"RootUrl": "http://localhost:8888/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down
2 changes: 0 additions & 2 deletions src/ServiceControl/Infrastructure/Settings/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down