* Resolve unit test failure introduced in r9148 (probably)
* Have the test scene always return success for session id authentication for now0.6.5-rc1
parent
119aeeed7d
commit
fa9b9126ee
|
@ -213,7 +213,6 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
PhysicsScene.OnJointDeactivated += jointDeactivated;
|
||||
PhysicsScene.OnJointErrorMessage += jointErrorMessage;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -46,6 +46,19 @@ namespace OpenSim.Tests.Common.Mock
|
|||
dumpAssetsToFile, physicalPrim, SeeIntoRegionFromNeighbor, config, simulatorVersion)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Temporarily override session authentication for tests (namely teleport).
|
||||
/// </summary>
|
||||
///
|
||||
/// TODO: This needs to be mocked out properly.
|
||||
///
|
||||
/// <param name="agent"></param>
|
||||
/// <returns></returns>
|
||||
public override bool AuthenticateUser(AgentCircuitData agent)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public AsyncSceneObjectGroupDeleter SceneObjectGroupDeleter
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue