aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
diff options
context:
space:
mode:
authorMelanie2011-03-31 15:48:42 +0200
committerMelanie2011-03-31 15:48:42 +0200
commit83c78029e39848113939d5c2c386db42876136d7 (patch)
tree08a0b8904da7e2f2d5fb94037287d286da9da253 /OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
parentFix llGetParcelPrimOwners so that it returns LSL_Strings in the list rather t... (diff)
downloadopensim-SC_OLD-83c78029e39848113939d5c2c386db42876136d7.zip
opensim-SC_OLD-83c78029e39848113939d5c2c386db42876136d7.tar.gz
opensim-SC_OLD-83c78029e39848113939d5c2c386db42876136d7.tar.bz2
opensim-SC_OLD-83c78029e39848113939d5c2c386db42876136d7.tar.xz
Make the login service's call to the sim time out quicker so we have a
chance to try fallback before the client quits
Diffstat (limited to 'OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs')
-rw-r--r--OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
index 1c31402..8f80788 100644
--- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
@@ -102,7 +102,7 @@ namespace OpenSim.Services.Connectors.Simulation
102 args["destination_uuid"] = OSD.FromString(destination.RegionID.ToString()); 102 args["destination_uuid"] = OSD.FromString(destination.RegionID.ToString());
103 args["teleport_flags"] = OSD.FromString(flags.ToString()); 103 args["teleport_flags"] = OSD.FromString(flags.ToString());
104 104
105 OSDMap result = WebUtil.PostToService(uri,args); 105 OSDMap result = WebUtil.PostToService(uri, args, 5000);
106 if (result["Success"].AsBoolean()) 106 if (result["Success"].AsBoolean())
107 return true; 107 return true;
108 108