aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-29 19:57:30 +0000
committerJustin Clarke Casey2008-10-29 19:57:30 +0000
commitf8c2efbe70d3cef23c6c519397857e1bc5d960fc (patch)
tree9c7cd7549906fde44b610c381a6bd08d0ae995d3 /OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
parent* Stop the DataSnapShot module trying to call home on shutdown even if it isn... (diff)
downloadopensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.zip
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.gz
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.bz2
opensim-SC_OLD-f8c2efbe70d3cef23c6c519397857e1bc5d960fc.tar.xz
* Instead of putting 0.5.11.00000 if there is no revision, just put 0.5.11 instead
* This is to make things less confusing to users (and maybe a little easier to do future version filtering for grid connections) * If there's disagreement about this, then please say so (preferably in the opensim-dev mailing list)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/DataSnapshot/DataSnapshotManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
index 3763dcd..3f934c9 100644
--- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
+++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
@@ -337,11 +337,11 @@ namespace OpenSim.Region.DataSnapshot
337 } 337 }
338 catch (WebException) 338 catch (WebException)
339 { 339 {
340 m_log.Warn("[DATASNAPSHOT] Unable to notify " + url); 340 m_log.Warn("[DATASNAPSHOT]: Unable to notify " + url);
341 } 341 }
342 catch (Exception e) 342 catch (Exception e)
343 { 343 {
344 m_log.Warn("[DATASNAPSHOT] Ignoring unknown exception " + e.ToString()); 344 m_log.Warn("[DATASNAPSHOT]: Ignoring unknown exception " + e.ToString());
345 } 345 }
346 byte[] response = new byte[1024]; 346 byte[] response = new byte[1024];
347 // int n = 0; 347 // int n = 0;
@@ -352,11 +352,11 @@ namespace OpenSim.Region.DataSnapshot
352 } 352 }
353 catch (Exception e) 353 catch (Exception e)
354 { 354 {
355 m_log.WarnFormat("[DATASNAPSHOT] Unable to decode reply from data service. Ignoring. {0}", e.StackTrace); 355 m_log.WarnFormat("[DATASNAPSHOT]: Unable to decode reply from data service. Ignoring. {0}", e.StackTrace);
356 } 356 }
357 // This is not quite working, so... 357 // This is not quite working, so...
358 // string responseStr = Encoding.UTF8.GetString(response); 358 // string responseStr = Encoding.UTF8.GetString(response);
359 m_log.Info("[DATASNAPSHOT] data service notified: " + url); 359 m_log.Info("[DATASNAPSHOT]: data service notified: " + url);
360 } 360 }
361 361
362 } 362 }