* Added a catch for RemotingErrors on the TCP init
parent
508048f3c4
commit
b0a6299937
|
@ -47,6 +47,10 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer
|
|||
{
|
||||
System.Console.WriteLine("Error: unable to connect to server");
|
||||
}
|
||||
catch (System.Runtime.Remoting.RemotingException)
|
||||
{
|
||||
System.Console.WriteLine("Error: unable to connect to server");
|
||||
}
|
||||
return null;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue