Code

add xp lookup slowness
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 15 Jul 2003 22:47:09 +0000 (22:47 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 15 Jul 2003 22:47:09 +0000 (22:47 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1787 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/FAQ.txt

index da86570c0c5d5b8f36c067d0bfe4067c3422ff9d..c7de3e11e7228ef35047b0e4cd6bb8b11db76f81 100644 (file)
@@ -2,7 +2,7 @@
 Roundup FAQ
 ===========
 
-:Version: $Revision: 1.13 $
+:Version: $Revision: 1.14 $
 
 .. contents::
 
@@ -79,6 +79,19 @@ You need to add the last 3 RewriteRule lines for each tracker that you have.
 You can now firewall off port 8888 from the rest of the world.
 
 
+Roundup runs very slowly on my XP machine when accessed from the Internet
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The issue is probably related to host name resolution for the client
+performing the request. You can turn off the resolution of the names
+when it's so slow like this. To do so, edit the module
+roundup/scripts/roundup_server.py around line 77 to add the following
+to the RoundupRequestHandler class:
+
+     def address_string(self):
+         return self.client_address[0]
+
+
 Templates
 ---------