* a bit of additional debugging:

This commit is contained in:
Jonathan Freedman
2010-10-23 00:18:19 -04:00
parent 38e76d71ac
commit 5ddb8b535e
2 changed files with 6 additions and 8 deletions

View File

@@ -566,6 +566,7 @@ namespace OpenSim.Services.LLLoginService
private GridRegion FindForeignRegion(string domainName, uint port, string regionName, out GridRegion gatekeeper)
{
m_log.Debug("attempting to findforeignregion " + domainName + ":" + port.ToString() + ":" + regionName);
gatekeeper = new GridRegion();
gatekeeper.ExternalHostName = domainName;
gatekeeper.HttpPort = port;
@@ -631,11 +632,9 @@ namespace OpenSim.Services.LLLoginService
gatekeeper = new GridRegion(destination);
gatekeeper.ExternalHostName = hostName;
gatekeeper.HttpPort = (uint)port;
}
else // login to foreign grid
{
gatekeeper.ServerURI = m_GatekeeperURL;
}
m_log.Debug("no gatekeeper detected..... using " + m_GatekeeperURL);
}
bool success = false;