diff options
author | Melanie | 2012-09-14 00:11:23 +0200 |
---|---|---|
committer | Melanie | 2012-09-30 16:30:16 +0100 |
commit | 060d6fe8f4eba0c1b1c0cb4f52acd2fd59725c66 (patch) | |
tree | f1c7164fe90c22ee0ce4f9f5418e1fe4cc3fa7e8 /OpenSim/Framework/Servers | |
parent | Add using clause I missed (diff) | |
download | opensim-SC_OLD-060d6fe8f4eba0c1b1c0cb4f52acd2fd59725c66.zip opensim-SC_OLD-060d6fe8f4eba0c1b1c0cb4f52acd2fd59725c66.tar.gz opensim-SC_OLD-060d6fe8f4eba0c1b1c0cb4f52acd2fd59725c66.tar.bz2 opensim-SC_OLD-060d6fe8f4eba0c1b1c0cb4f52acd2fd59725c66.tar.xz |
Allow setting max connections for an endpoint
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index ff57422..d5bc3c3 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -648,7 +648,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
648 | // Every month or so this will wrap and give bad numbers, not really a problem | 648 | // Every month or so this will wrap and give bad numbers, not really a problem |
649 | // since its just for reporting | 649 | // since its just for reporting |
650 | int tickdiff = requestEndTick - requestStartTick; | 650 | int tickdiff = requestEndTick - requestStartTick; |
651 | if (tickdiff > 3000) | 651 | if (tickdiff > 3000 && requestHandler.Name != "GetTexture") |
652 | { | 652 | { |
653 | m_log.InfoFormat( | 653 | m_log.InfoFormat( |
654 | "[BASE HTTP SERVER]: Slow handling of {0} {1} {2} {3} {4} from {5} took {6}ms", | 654 | "[BASE HTTP SERVER]: Slow handling of {0} {1} {2} {3} {4} from {5} took {6}ms", |