Closed GoogleCodeExporter closed 9 years ago
Can you try this and tell me if it works?
Index: servers.py
===================================================================
--- servers.py (revision 1233)
+++ servers.py (working copy)
@@ -518,6 +518,10 @@
if os.name == 'posix':
try:
import multiprocessing
+ # Work around https://code.google.com/p/pyftpdlib/issues/detail?id=272
+ # on OpenBSD.
+ multiprocessing.Lock()
+ multiprocessing.Event()
except ImportError:
pass
else:
Original comment by g.rodola
on 24 Sep 2013 at 9:09
Your patch fixes the problem. Thanks a lot!
Original comment by juanfra...@gmail.com
on 24 Sep 2013 at 8:10
Original comment by g.rodola
on 6 Nov 2013 at 8:29
Original comment by g.rodola
on 8 Nov 2013 at 7:52
Just for future reference, OpenBSD has now support for semaphores. The patch is
only needed for version 5.4 and earlier.
Original comment by juanfra...@gmail.com
on 5 Dec 2013 at 11:13
Original issue reported on code.google.com by
juanfra...@gmail.com
on 17 Sep 2013 at 1:54