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
parent
dc098ef671
commit
c4f8630968
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue