diff options
author | Justin Clark-Casey (justincc) | 2012-03-06 19:05:32 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-06 19:05:32 +0000 |
commit | 0f4cdc0c5bb750ec4ab7b100dc82d3ff08c9e427 (patch) | |
tree | bd8fe31cdfcb0da2d2e81a7d82e39e2eab81e5e7 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Fix TestSyntaxError() and TestSyntaxErrorDeclaringVariableInForLoop() (diff) | |
download | opensim-SC-0f4cdc0c5bb750ec4ab7b100dc82d3ff08c9e427.zip opensim-SC-0f4cdc0c5bb750ec4ab7b100dc82d3ff08c9e427.tar.gz opensim-SC-0f4cdc0c5bb750ec4ab7b100dc82d3ff08c9e427.tar.bz2 opensim-SC-0f4cdc0c5bb750ec4ab7b100dc82d3ff08c9e427.tar.xz |
Explictly close down the StatsReporter so that we can shutdown its timer
This is another step necessary for the scene to be garbage collected between performance tests
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index a01b851..6b28581 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1076,6 +1076,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1076 | { | 1076 | { |
1077 | m_log.InfoFormat("[SCENE]: Closing down the single simulator: {0}", RegionInfo.RegionName); | 1077 | m_log.InfoFormat("[SCENE]: Closing down the single simulator: {0}", RegionInfo.RegionName); |
1078 | 1078 | ||
1079 | StatsReporter.Close(); | ||
1080 | |||
1079 | m_restartTimer.Stop(); | 1081 | m_restartTimer.Stop(); |
1080 | m_restartTimer.Close(); | 1082 | m_restartTimer.Close(); |
1081 | 1083 | ||