*Fixed storage issue as noted in last commit of the OGS1 GridServer

*Reverted the default remote grid server port back to 8001 (from a port change to debug a previous issue)
This commit is contained in:
mingchen
2007-07-03 19:26:35 +00:00
parent e06ffb3981
commit 78e420f48b
5 changed files with 11 additions and 10 deletions

View File

@@ -92,7 +92,7 @@ namespace OpenSim.Framework.Data.DB4o
if (manager.simProfiles.ContainsKey(uuid))
return manager.simProfiles[uuid];
}
throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + ")");
throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + "). Total Registered Regions: " + manager.simProfiles.Count);
}
/// <summary>

View File

@@ -121,7 +121,7 @@ namespace OpenSim.Framework.Types
attri = configData.GetAttribute("GridServerURL");
if (attri == "")
{
this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:13801/");
this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:8001/");
configData.SetAttribute("GridServerURL", this.GridURL);
}
else