From: richard Date: Tue, 15 Jul 2003 22:47:09 +0000 (+0000) Subject: add xp lookup slowness X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a23a669b2a61aa47896c978022d3c26e23cee016;p=roundup.git add xp lookup slowness git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1787 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/doc/FAQ.txt b/doc/FAQ.txt index da86570..c7de3e1 100644 --- a/doc/FAQ.txt +++ b/doc/FAQ.txt @@ -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 ---------