na387 6 lat temu
rodzic
commit
f58447dd41
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      celery/platforms.py

+ 4 - 0
celery/platforms.py

@@ -203,6 +203,10 @@ class Pidfile(object):
                 print('Stale pidfile exists - Removing it.', file=sys.stderr)
                 self.remove()
                 return True
+        except SystemError as exc:
+            print('Stale pidfile exists - Removing it.', file=sys.stderr)
+            self.remove()
+            return True
         return False
 
     def write_pid(self):