diff options
author | Melanie | 2011-03-31 15:48:42 +0200 |
---|---|---|
committer | Melanie | 2011-03-31 15:48:42 +0200 |
commit | 83c78029e39848113939d5c2c386db42876136d7 (patch) | |
tree | 08a0b8904da7e2f2d5fb94037287d286da9da253 /OpenSim/Services | |
parent | Fix llGetParcelPrimOwners so that it returns LSL_Strings in the list rather t... (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 2 |
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 | ||