aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs
index 4120872..2882906 100644
--- a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs
@@ -84,12 +84,15 @@ namespace OpenSim.Services.Connectors
84 string serviceURI = assetConfig.GetString("AssetServerURI", 84 string serviceURI = assetConfig.GetString("AssetServerURI",
85 String.Empty); 85 String.Empty);
86 86
87 m_ServerURI = serviceURI;
88
87 if (serviceURI == String.Empty) 89 if (serviceURI == String.Empty)
88 { 90 {
89 m_log.Error("[ASSET CONNECTOR]: No Server URI named in section AssetService"); 91 m_log.Error("[ASSET CONNECTOR]: No Server URI named in section AssetService");
90 throw new Exception("Asset connector init error"); 92 throw new Exception("Asset connector init error");
91 } 93 }
92 94
95
93 m_retryTimer = new Timer(); 96 m_retryTimer = new Timer();
94 m_retryTimer.Elapsed += new ElapsedEventHandler(retryCheck); 97 m_retryTimer.Elapsed += new ElapsedEventHandler(retryCheck);
95 m_retryTimer.Interval = 60000; 98 m_retryTimer.Interval = 60000;