mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Add OpenSim.Server.Base reference in prebuild.xml. Initialize svc_checks dictionary in WebkeyOrPasswordAuthenticationService, which was what was causing the load failure.
This commit is contained in:
@@ -15,8 +15,11 @@ namespace OpenSim.Services.AuthenticationService
|
||||
public class WebkeyOrPasswordAuthenticationService : AuthenticationServiceBase, IAuthenticationService
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
private IConfigSource config;
|
||||
private Dictionary<string, IAuthenticationService> svc_checks;
|
||||
private Dictionary<string, IAuthenticationService> svc_checks
|
||||
= new Dictionary<string, IAuthenticationService>();
|
||||
|
||||
public WebkeyOrPasswordAuthenticationService(IConfigSource config)
|
||||
: base(config)
|
||||
{
|
||||
|
||||
@@ -1059,6 +1059,7 @@
|
||||
<Reference name="OpenSim.Framework"/>
|
||||
<Reference name="OpenSim.Framework.Console"/>
|
||||
<Reference name="OpenSim.Framework.Servers.HttpServer"/>
|
||||
<Reference name="OpenSim.Server.Base"/>
|
||||
<Reference name="OpenSim.Services.Interfaces"/>
|
||||
<Reference name="OpenSim.Services.Base"/>
|
||||
<Reference name="OpenSim.Services.Connectors"/>
|
||||
|
||||
Reference in New Issue
Block a user