Don't throw an exception if the authorizationservice is missing a serviceuri config entry. Not every authorization service will need a URI.

This commit is contained in:
meta7
2010-09-15 08:08:29 -07:00
parent 1f74f013b2
commit 77eb8ade8c

View File

@@ -77,7 +77,6 @@ namespace OpenSim.Services.Connectors
if (serviceURI == String.Empty)
{
m_log.Error("[AUTHORIZATION CONNECTOR]: No Server URI named in section AuthorizationService");
throw new Exception("Authorization connector init error");
}
m_ServerURI = serviceURI;