aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorDiva Canto2013-07-11 14:23:37 -0700
committerDiva Canto2013-07-11 14:23:37 -0700
commitee51a9f9c902e1587023b900438331c086680b30 (patch)
tree1ea0963e3976061ef12205fd0a3ea227e7b29411 /OpenSim/Services
parentAdded a test for the asset service (diff)
downloadopensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.zip
opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.gz
opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.bz2
opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.xz
Added property to make for more flexible testing.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
index 7f7f251..8b04d7f 100644
--- a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
+++ b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
@@ -55,6 +55,11 @@ namespace OpenSim.Services.Connectors
55 // Maps: Asset ID -> Handlers which will be called when the asset has been loaded 55 // Maps: Asset ID -> Handlers which will be called when the asset has been loaded
56 private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>(); 56 private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>();
57 57
58 public int MaxAssetRequestConcurrency
59 {
60 get { return m_maxAssetRequestConcurrency; }
61 set { m_maxAssetRequestConcurrency = value; }
62 }
58 63
59 public AssetServicesConnector() 64 public AssetServicesConnector()
60 { 65 {