Skip to content

Commit 0da04ba

Browse files
author
Richard Jones
committed
add xp lookup slowness
1 parent cd0ba32 commit 0da04ba

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

doc/FAQ.txt

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Roundup FAQ
33
===========
44

5-
:Version: $Revision: 1.13 $
5+
:Version: $Revision: 1.14 $
66

77
.. contents::
88

@@ -79,6 +79,19 @@ You need to add the last 3 RewriteRule lines for each tracker that you have.
7979
You can now firewall off port 8888 from the rest of the world.
8080

8181

82+
Roundup runs very slowly on my XP machine when accessed from the Internet
83+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
84+
85+
The issue is probably related to host name resolution for the client
86+
performing the request. You can turn off the resolution of the names
87+
when it's so slow like this. To do so, edit the module
88+
roundup/scripts/roundup_server.py around line 77 to add the following
89+
to the RoundupRequestHandler class:
90+
91+
def address_string(self):
92+
return self.client_address[0]
93+
94+
8295
Templates
8396
---------
8497

0 commit comments

Comments
 (0)