diff --git a/src/Tgstation.Server.Host/Components/InstanceManager.cs b/src/Tgstation.Server.Host/Components/InstanceManager.cs index 6259ad60e5..6c61afd878 100644 --- a/src/Tgstation.Server.Host/Components/InstanceManager.cs +++ b/src/Tgstation.Server.Host/Components/InstanceManager.cs @@ -181,6 +181,10 @@ namespace Tgstation.Server.Host.Components logger.LogInformation("Instance manager ready!"); application.Ready(null); } + catch (OperationCanceledException) + { + logger.LogInformation("Cancelled instance manager initialization!"); + } catch (Exception e) { logger.LogCritical("Instance manager startup error! Exception: {0}", e);