Fix a bug where logins to standalones would fail if the RegionReady module was not active
Unfortunately, the OnLoginsEnabled event is currently only guaranteed to fire if the RegionReady module is active. However, we can instantiate the AuthorizationService in the module RegionLoaded method since by this time all other modules will have been loaded0.7.4.1
parent
437f18bc41
commit
e2b1c569da
|
@ -93,8 +93,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Authorization
|
||||||
|
|
||||||
scene.RegisterModuleInterface<IAuthorizationService>(this);
|
scene.RegisterModuleInterface<IAuthorizationService>(this);
|
||||||
m_Scene = scene;
|
m_Scene = scene;
|
||||||
|
|
||||||
scene.EventManager.OnLoginsEnabled += new EventManager.LoginsEnabled(OnLoginsEnabled);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RemoveRegion(Scene scene)
|
public void RemoveRegion(Scene scene)
|
||||||
|
@ -106,16 +104,13 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Authorization
|
||||||
if (!m_Enabled)
|
if (!m_Enabled)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
m_AuthorizationService = new AuthorizationService(m_AuthorizationConfig, m_Scene);
|
||||||
|
|
||||||
m_log.InfoFormat(
|
m_log.InfoFormat(
|
||||||
"[AUTHORIZATION CONNECTOR]: Enabled local authorization for region {0}",
|
"[AUTHORIZATION CONNECTOR]: Enabled local authorization for region {0}",
|
||||||
scene.RegionInfo.RegionName);
|
scene.RegionInfo.RegionName);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnLoginsEnabled(string regionName)
|
|
||||||
{
|
|
||||||
m_AuthorizationService = new AuthorizationService(m_AuthorizationConfig, m_Scene);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsAuthorizedForRegion(
|
public bool IsAuthorizedForRegion(
|
||||||
string userID, string firstName, string lastName, string regionID, out string message)
|
string userID, string firstName, string lastName, string regionID, out string message)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue