mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
thread.abort is gone. Coment out so things compile
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user