diff options
Made BaseOpenSimServer.ShutdownSpecific() public. As the OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 75bdcf3..3dba20f 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -557,7 +557,7 @@ namespace OpenSim | |||
557 | /// <summary> | 557 | /// <summary> |
558 | /// Performs any last-minute sanity checking and shuts down the region server | 558 | /// Performs any last-minute sanity checking and shuts down the region server |
559 | /// </summary> | 559 | /// </summary> |
560 | protected override void ShutdownSpecific() | 560 | public override void ShutdownSpecific() |
561 | { | 561 | { |
562 | if (proxyUrl.Length > 0) | 562 | if (proxyUrl.Length > 0) |
563 | { | 563 | { |