IHostedService Stop without any reason
问题 Could anyone explain to me why my server stopped for no reason? below my IHostedService implementation: public class HostServiceBox : IHostedService { public Task StartAsync(CancellationToken cancellationToken) { return Task.Run(() => { DomonutyBoxBusiness.StartBoxListening(); //STARTUP Box listening while (true) { Logging.Info(DateTime.Now + " HostServiceBox Running"); Thread.Sleep(10000); } }, cancellationToken); } public Task StopAsync(CancellationToken cancellationToken) { Logging.Info