* Check in login service tests beachhead
parent
d8a2ad5cb5
commit
0b8d22ab54
|
@ -316,6 +316,7 @@ namespace OpenSim.Grid.UserServer
|
|||
m_log.InfoFormat(
|
||||
"[LOGIN]: Telling {0} @ {1},{2} ({3}) to prepare for client connection",
|
||||
regionInfo.regionName, response.RegionX, response.RegionY, regionInfo.httpServerURI);
|
||||
|
||||
// Update agent with target sim
|
||||
user.CurrentAgent.Region = regionInfo.UUID;
|
||||
user.CurrentAgent.Handle = regionInfo.regionHandle;
|
||||
|
|
|
@ -303,11 +303,9 @@ namespace OpenSim.Region.Communications.Local
|
|||
|
||||
string seedcap = "http://";
|
||||
|
||||
|
||||
if (serversInfo.HttpUsesSSL)
|
||||
{
|
||||
seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/";
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -320,9 +318,11 @@ namespace OpenSim.Region.Communications.Local
|
|||
m_log.InfoFormat(
|
||||
"[LOGIN]: Telling {0} @ {1},{2} ({3}) to prepare for client connection",
|
||||
regionInfo.RegionName, response.RegionX, response.RegionY, regionInfo.ServerURI);
|
||||
|
||||
// Update agent with target sim
|
||||
user.CurrentAgent.Region = regionInfo.RegionID;
|
||||
user.CurrentAgent.Handle = regionInfo.RegionHandle;
|
||||
|
||||
// Prepare notification
|
||||
Login loginParams = new Login();
|
||||
loginParams.Session = user.CurrentAgent.SessionID;
|
||||
|
|
|
@ -2860,7 +2860,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
if (RegionInfo.EstateSettings.IsBanned(agentId))
|
||||
return;
|
||||
|
||||
|
||||
String capsObjectPath = GetCapsPath(agentId);
|
||||
|
||||
m_log.DebugFormat(
|
||||
|
|
|
@ -36,7 +36,12 @@ namespace OpenSim.Tests.Common.Mock
|
|||
public class TestCommunicationsManager : CommunicationsManager
|
||||
{
|
||||
public TestCommunicationsManager()
|
||||
: base(null, null, null, false, null)
|
||||
: this(null)
|
||||
{
|
||||
}
|
||||
|
||||
public TestCommunicationsManager(NetworkServersInfo serversInfo)
|
||||
: base(serversInfo, null, null, false, null)
|
||||
{
|
||||
LocalInventoryService lis = new LocalInventoryService();
|
||||
m_interServiceInventoryService = lis;
|
||||
|
|
Loading…
Reference in New Issue