diff options
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 12cde18..69dd950 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -147,6 +147,10 @@ namespace pCampBot | |||
147 | /// </summary> | 147 | /// </summary> |
148 | public BotManager() | 148 | public BotManager() |
149 | { | 149 | { |
150 | // We set this to avoid issues with bots running out of HTTP connections if many are run from a single machine | ||
151 | // to multiple regions. | ||
152 | Settings.MAX_HTTP_CONNECTIONS = int.MaxValue; | ||
153 | |||
150 | InitBotSendAgentUpdates = true; | 154 | InitBotSendAgentUpdates = true; |
151 | InitBotRequestObjectTextures = true; | 155 | InitBotRequestObjectTextures = true; |
152 | 156 | ||