na387 6 anni fa
parent
commit
f58447dd41
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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):