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
0.6.0-stable
Charles Krinke 2008-07-20 22:19:39 +00:00
parent 681433c4b7
commit bedd28e02e
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ namespace OpenSim.Region.Communications.OGS1
// Hashtable griddatahash = GridRespData; // Hashtable griddatahash = GridRespData;
// Process Response // Process Response
if (GridRespData.ContainsKey("error")) if (GridRespData != null && GridRespData.ContainsKey("error"))
{ {
string errorstring = (string)GridRespData["error"]; string errorstring = (string)GridRespData["error"];
m_log.Error("Unable to connect to grid: " + errorstring); m_log.Error("Unable to connect to grid: " + errorstring);