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 down
This commit is contained in:
Charles Krinke
2008-07-20 22:19:39 +00:00
parent 681433c4b7
commit bedd28e02e

View File

@@ -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);