mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
* If a ThreadAbortException reaches AuthUser() then let it pass through unmolested
* These are only thrown on client shutdown anyway * This stops the console (harmlessly) spewing stack traces when a client logs off
This commit is contained in:
@@ -725,6 +725,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
// ThreadAbortExceptions need to go through unmolested.
|
||||
if (e is ThreadAbortException)
|
||||
throw e;
|
||||
|
||||
// Don't let a failure in an individual client thread crash the whole sim.
|
||||
// FIXME: could do more sophisticated cleanup since leaving client resources around may
|
||||
// cause instability for the region server over time.
|
||||
|
||||
Reference in New Issue
Block a user