aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authormeta72010-09-15 08:08:29 -0700
committermeta72010-09-15 08:08:29 -0700
commit77eb8ade8c030fd174bc24306e8c4adfd415b769 (patch)
treededf6e716b79cc07bbd1f203a9ded53ad0066bcb /OpenSim
parentDon't fart when deserializing a prim with no ParentGroup set yet (diff)
downloadopensim-SC_OLD-77eb8ade8c030fd174bc24306e8c4adfd415b769.zip
opensim-SC_OLD-77eb8ade8c030fd174bc24306e8c4adfd415b769.tar.gz
opensim-SC_OLD-77eb8ade8c030fd174bc24306e8c4adfd415b769.tar.bz2
opensim-SC_OLD-77eb8ade8c030fd174bc24306e8c4adfd415b769.tar.xz
Don't throw an exception if the authorizationservice is missing a serviceuri config entry. Not every authorization service will need a URI.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs b/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs
index 4eb4bd2..8ae12ad 100644
--- a/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Authorization/AuthorizationServiceConnector.cs
@@ -77,7 +77,6 @@ namespace OpenSim.Services.Connectors
77 if (serviceURI == String.Empty) 77 if (serviceURI == String.Empty)
78 { 78 {
79 m_log.Error("[AUTHORIZATION CONNECTOR]: No Server URI named in section AuthorizationService"); 79 m_log.Error("[AUTHORIZATION CONNECTOR]: No Server URI named in section AuthorizationService");
80 throw new Exception("Authorization connector init error");
81 } 80 }
82 m_ServerURI = serviceURI; 81 m_ServerURI = serviceURI;
83 82