We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d9e6d commit e59f772Copy full SHA for e59f772
src/ServiceControl.Audit/Infrastructure/Settings/Settings.cs
@@ -63,11 +63,10 @@ void LoadAuditQueueInformation()
63
throw new Exception("ServiceBus/AuditQueue value is required to start the instance");
64
}
65
66
- var serviceControlNamespace = new SettingsRootNamespace("ServiceControl");
67
-
68
if (!SettingsReader.TryRead(SettingsRootNamespace, "IngestAuditMessages", out bool ingestAuditMessages))
69
{
70
// Backwards compatibility
+ var serviceControlNamespace = new SettingsRootNamespace("ServiceControl");
71
ingestAuditMessages = SettingsReader.Read(serviceControlNamespace, "IngestAuditMessages", true);
72
73
0 commit comments