In the AgentCircuitData of HG users, set the last name to include the port

E.g., instead of "first.last @grid.example.com", the name is now "first.last @grid.example.com:8002"
0.8.2-post-fixes
Oren Hurvitz 2015-08-03 16:25:45 +03:00
parent dc098ef671
commit c4f8630968
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ namespace OpenSim.Services.HypergridService
try
{
Uri uri = new Uri(aCircuit.ServiceURLs["HomeURI"].ToString());
aCircuit.lastname = "@" + uri.Host; // + ":" + uri.Port;
aCircuit.lastname = "@" + uri.Authority;
}
catch
{