thread.abort is gone. Coment out so things compile

This commit is contained in:
UbitUmarov
2022-10-02 11:30:41 +01:00
parent fc3543c24a
commit f6a47a9f47
9 changed files with 23 additions and 16 deletions

View File

@@ -123,13 +123,13 @@ namespace OpenSim.Server.Base
if ( cert_path.Length == 0 )
{
System.Console.WriteLine("Path to X509 certificate is missing, server can't start.");
Thread.CurrentThread.Abort();
//Thread.CurrentThread.Abort();
}
string cert_pass = networkConfig.GetString("cert_pass", string.Empty);
if ( cert_pass.Length == 0 )
{
System.Console.WriteLine("Password for X509 certificate is missing, server can't start.");
Thread.CurrentThread.Abort();
//Thread.CurrentThread.Abort();
}
MainServer.AddHttpServer(new BaseHttpServer(https_port, ssl_listener, cert_path, cert_pass));