diff --git a/src/Tgstation.Server.Host/Setup/SetupWizard.cs b/src/Tgstation.Server.Host/Setup/SetupWizard.cs index 65eb830ec8..369287ff9f 100644 --- a/src/Tgstation.Server.Host/Setup/SetupWizard.cs +++ b/src/Tgstation.Server.Host/Setup/SetupWizard.cs @@ -737,11 +737,6 @@ namespace Tgstation.Server.Host.Setup await console.PressAnyKeyAsync(cancellationToken).ConfigureAwait(false); throw new OperationCanceledException(); } - - await console.WriteAsync("Waiting for configuration changes to reload...", true, cancellationToken).ConfigureAwait(false); - - // we need to wait for the configuration's file system watcher to read and reload the changes - await asyncDelayer.Delay(TimeSpan.FromSeconds(5), cancellationToken).ConfigureAwait(false); } /// diff --git a/tests/Tgstation.Server.Host.Tests/Core/TestSetupWizard.cs b/tests/Tgstation.Server.Host.Tests/Setup/TestSetupWizard.cs similarity index 99% rename from tests/Tgstation.Server.Host.Tests/Core/TestSetupWizard.cs rename to tests/Tgstation.Server.Host.Tests/Setup/TestSetupWizard.cs index 679073a229..847a81fb49 100644 --- a/tests/Tgstation.Server.Host.Tests/Core/TestSetupWizard.cs +++ b/tests/Tgstation.Server.Host.Tests/Setup/TestSetupWizard.cs @@ -1,6 +1,5 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; @@ -12,12 +11,12 @@ using System.Text; using System.Threading; using System.Threading.Tasks; using Tgstation.Server.Host.Configuration; +using Tgstation.Server.Host.Core; using Tgstation.Server.Host.Database; using Tgstation.Server.Host.IO; -using Tgstation.Server.Host.Setup; using Tgstation.Server.Host.System; -namespace Tgstation.Server.Host.Core.Tests +namespace Tgstation.Server.Host.Setup.Tests { [TestClass] public sealed class TestSetupWizard