Mantis#1797. Thank you kindly, StrawberryFride for a patch that solves:
Shutdown command on region server was presenting an error, failing to send detach region for all regions, and failing to shut down0.6.0-stable
parent
681433c4b7
commit
bedd28e02e
|
@ -206,7 +206,7 @@ namespace OpenSim.Region.Communications.OGS1
|
|||
// Hashtable griddatahash = GridRespData;
|
||||
|
||||
// Process Response
|
||||
if (GridRespData.ContainsKey("error"))
|
||||
if (GridRespData != null && GridRespData.ContainsKey("error"))
|
||||
{
|
||||
string errorstring = (string)GridRespData["error"];
|
||||
m_log.Error("Unable to connect to grid: " + errorstring);
|
||||
|
|
Loading…
Reference in New Issue