aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-14 17:15:09 +0000
committerJustin Clarke Casey2009-04-14 17:15:09 +0000
commit1894157dd3608a15c3336efc2d58eee0de092610 (patch)
treecfecb8e2104d9a88e82670e27ecedbda0466fa88 /OpenSim/Region/Application
parent* refactor: rename AssetCache.Initialize() to AssetCache.Reset() to avoid hav... (diff)
downloadopensim-SC_OLD-1894157dd3608a15c3336efc2d58eee0de092610.zip
opensim-SC_OLD-1894157dd3608a15c3336efc2d58eee0de092610.tar.gz
opensim-SC_OLD-1894157dd3608a15c3336efc2d58eee0de092610.tar.bz2
opensim-SC_OLD-1894157dd3608a15c3336efc2d58eee0de092610.tar.xz
* Explicitly start the asset server thread so that unit tests can run single rather than multi-threaded (which may be behind the occasional test freezes)
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 3840240..7aa9f99 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -381,6 +381,8 @@ namespace OpenSim
381 // Initialize the asset cache, passing a reference to the selected 381 // Initialize the asset cache, passing a reference to the selected
382 // asset server interface. 382 // asset server interface.
383 m_assetCache = ResolveAssetCache(assetServer); 383 m_assetCache = ResolveAssetCache(assetServer);
384
385 assetServer.Start();
384 } 386 }
385 387
386 // This method loads the identified asset server, passing an approrpiately 388 // This method loads the identified asset server, passing an approrpiately