From: <los...@us...> - 2008-07-14 21:56:01
|
Revision: 700 http://fail2ban.svn.sourceforge.net/fail2ban/?rev=700&view=rev Author: lostcontrol Date: 2008-07-14 14:56:07 -0700 (Mon, 14 Jul 2008) Log Message: ----------- - Use poll instead of select in asyncore.loop. This should solve the "Unknown error 514". Thanks to Michael Geiger and Klaus Lehmann. Modified Paths: -------------- branches/FAIL2BAN-0_8/ChangeLog branches/FAIL2BAN-0_8/server/asyncserver.py Modified: branches/FAIL2BAN-0_8/ChangeLog =================================================================== --- branches/FAIL2BAN-0_8/ChangeLog 2008-05-21 22:17:00 UTC (rev 699) +++ branches/FAIL2BAN-0_8/ChangeLog 2008-07-14 21:56:07 UTC (rev 700) @@ -26,6 +26,9 @@ - Added and changed some logging level and messages. - Added missing ignoreregex to filters. Thanks to Klaus Lehmann. +- Use poll instead of select in asyncore.loop. This should + solve the "Unknown error 514". Thanks to Michael Geiger and + Klaus Lehmann. ver. 0.8.2 (2008/03/06) - stable ---------- Modified: branches/FAIL2BAN-0_8/server/asyncserver.py =================================================================== --- branches/FAIL2BAN-0_8/server/asyncserver.py 2008-05-21 22:17:00 UTC (rev 699) +++ branches/FAIL2BAN-0_8/server/asyncserver.py 2008-07-14 21:56:07 UTC (rev 700) @@ -132,7 +132,7 @@ # Sets the init flag. self.__init = True # TODO Add try..catch - asyncore.loop() + asyncore.loop(use_poll = True) ## # Stops the communication server. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |