Change the user verification call back to use the host name instead of the
IP address. Fixes NGINX on OSGrid getting confuzzled.LSLKeyTest
parent
11a8a722df
commit
8239e29be7
|
@ -572,7 +572,11 @@ namespace OpenSim.Services.Connectors.Hypergrid
|
||||||
XmlRpcResponse response = null;
|
XmlRpcResponse response = null;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
response = request.Send(m_ServerURL, 10000);
|
// We can not use m_ServerURL here anymore because it causes
|
||||||
|
// the HTTP request to be built without a host name. This messes
|
||||||
|
// with OSGrid's NGINX and can make OSGrid avatars unable to TP
|
||||||
|
// to other grids running recent mono.
|
||||||
|
response = request.Send(m_ServerURLHost, 10000);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue