From d0706d7a134fc06e9231a997da76c5fcc2d3381d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 27 Oct 2021 13:25:08 -0400 Subject: [PATCH] Backwards compatibility --- .../Configuration/SessionConfiguration.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Configuration/SessionConfiguration.cs b/src/Tgstation.Server.Host/Configuration/SessionConfiguration.cs index a65090f773..86641b8944 100644 --- a/src/Tgstation.Server.Host/Configuration/SessionConfiguration.cs +++ b/src/Tgstation.Server.Host/Configuration/SessionConfiguration.cs @@ -10,10 +10,15 @@ /// public const string Section = "Session"; + /// + /// The default value for . + /// + private const bool DefaultHighPriorityLiveDreamDaemon = true; + /// /// If the public DreamDaemon instances are set to be above normal priority processes. /// - public bool HighPriorityLiveDreamDaemon { get; set; } + public bool HighPriorityLiveDreamDaemon { get; set; } = DefaultHighPriorityLiveDreamDaemon; /// /// If the deployment DreamMaker and DreamDaemon instances are set to be below normal priority processes.