Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions gunicorn/pidfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.

import errno
import os
import tempfile

Expand All @@ -19,13 +18,6 @@ def __init__(self, fname):
self.pid = None

def create(self, pid):
oldpid = self.validate()
if oldpid:
if oldpid == os.getpid():
return
msg = "Already running on PID %s (or pid file '%s' is stale)"
raise RuntimeError(msg % (oldpid, self.fname))

self.pid = pid

# Write pidfile
Expand Down Expand Up @@ -58,28 +50,3 @@ def unlink(self):
os.unlink(self.fname)
except Exception:
pass

def validate(self):
""" Validate pidfile and make it stale if needed"""
if not self.fname:
return
try:
with open(self.fname) as f:
try:
wpid = int(f.read())
except ValueError:
return

try:
os.kill(wpid, 0)
return wpid
except OSError as e:
if e.args[0] == errno.EPERM:
return wpid
if e.args[0] == errno.ESRCH:
return
raise
except OSError as e:
if e.args[0] == errno.ENOENT:
return
raise