From b8e4cdbc4ee92a683f8029b54684aeebb2dff637 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 6 Jul 2020 04:05:08 -0400 Subject: [PATCH] Minor log line --- .../Components/Session/ReattachInfoHandler.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Tgstation.Server.Host/Components/Session/ReattachInfoHandler.cs b/src/Tgstation.Server.Host/Components/Session/ReattachInfoHandler.cs index 76631de5f2..37a361135c 100644 --- a/src/Tgstation.Server.Host/Components/Session/ReattachInfoHandler.cs +++ b/src/Tgstation.Server.Host/Components/Session/ReattachInfoHandler.cs @@ -107,7 +107,10 @@ namespace Tgstation.Server.Host.Components.Session .ConfigureAwait(false); if (timeoutMilliseconds == default) + { + logger.LogCritical("Missing TopicRequestTimeout!"); return; + } topicTimeout = TimeSpan.FromMilliseconds(timeoutMilliseconds.Value);