diff options
author | mingchen | 2007-07-03 19:26:35 +0000 |
---|---|---|
committer | mingchen | 2007-07-03 19:26:35 +0000 |
commit | 78e420f48bc8ce79f45c5a90d8ebb4004d7993e7 (patch) | |
tree | f48c150972b59371371b69a49ea4991e1cbafac3 /OpenSim/Framework | |
parent | *Removed GridInfo class as it has been previously replaced with the much bett... (diff) | |
download | opensim-SC_OLD-78e420f48bc8ce79f45c5a90d8ebb4004d7993e7.zip opensim-SC_OLD-78e420f48bc8ce79f45c5a90d8ebb4004d7993e7.tar.gz opensim-SC_OLD-78e420f48bc8ce79f45c5a90d8ebb4004d7993e7.tar.bz2 opensim-SC_OLD-78e420f48bc8ce79f45c5a90d8ebb4004d7993e7.tar.xz |
*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)
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Data.DB4o/DB4oGridData.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/General/Types/NetworkServersInfo.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs index 1aaa775..5fec367 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs | |||
@@ -92,7 +92,7 @@ namespace OpenSim.Framework.Data.DB4o | |||
92 | if (manager.simProfiles.ContainsKey(uuid)) | 92 | if (manager.simProfiles.ContainsKey(uuid)) |
93 | return manager.simProfiles[uuid]; | 93 | return manager.simProfiles[uuid]; |
94 | } | 94 | } |
95 | throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + ")"); | 95 | throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + "). Total Registered Regions: " + manager.simProfiles.Count); |
96 | } | 96 | } |
97 | 97 | ||
98 | /// <summary> | 98 | /// <summary> |
diff --git a/OpenSim/Framework/General/Types/NetworkServersInfo.cs b/OpenSim/Framework/General/Types/NetworkServersInfo.cs index 142edc0..89ebf94 100644 --- a/OpenSim/Framework/General/Types/NetworkServersInfo.cs +++ b/OpenSim/Framework/General/Types/NetworkServersInfo.cs | |||
@@ -121,7 +121,7 @@ namespace OpenSim.Framework.Types | |||
121 | attri = configData.GetAttribute("GridServerURL"); | 121 | attri = configData.GetAttribute("GridServerURL"); |
122 | if (attri == "") | 122 | if (attri == "") |
123 | { | 123 | { |
124 | this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:13801/"); | 124 | this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:8001/"); |
125 | configData.SetAttribute("GridServerURL", this.GridURL); | 125 | configData.SetAttribute("GridServerURL", this.GridURL); |
126 | } | 126 | } |
127 | else | 127 | else |