From b8047a5585b8c6e737d02080c7bfddf4c9ed802c Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sun, 31 May 2020 12:09:13 -0400 Subject: [PATCH] Don't consider startup timeout as a launch parameter --- build/Version.props | 4 ++-- .../Models/Internal/DreamDaemonLaunchParameters.cs | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/build/Version.props b/build/Version.props index bda24b2315..a59e37402d 100644 --- a/build/Version.props +++ b/build/Version.props @@ -3,8 +3,8 @@ 4.3.0 - 6.5.0 - 7.1.0 + 6.5.1 + 7.1.1 5.2.2 0.4.0 1.1.0 diff --git a/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs b/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs index f5bd309d61..647c22c6db 100644 --- a/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs +++ b/src/Tgstation.Server.Api/Models/Internal/DreamDaemonLaunchParameters.cs @@ -48,7 +48,7 @@ namespace Tgstation.Server.Api.Models.Internal public uint? HeartbeatSeconds { get; set; } /// - /// Check if we match a given set of + /// Check if we match a given set of . is excluded. /// /// The to compare against /// if they match, otherwise @@ -57,7 +57,6 @@ namespace Tgstation.Server.Api.Models.Internal && SecurityLevel == otherParameters.SecurityLevel && PrimaryPort == otherParameters.PrimaryPort && SecondaryPort == otherParameters.SecondaryPort - && StartupTimeout == otherParameters.StartupTimeout - && HeartbeatSeconds == otherParameters.HeartbeatSeconds; + && HeartbeatSeconds == otherParameters.HeartbeatSeconds; // We intentionally don't check StartupTimeout as it doesn't matter } } \ No newline at end of file