diff --git a/gunicorn/util.py b/gunicorn/util.py index d967e5d1..0e1f9f19 100644 --- a/gunicorn/util.py +++ b/gunicorn/util.py @@ -343,7 +343,7 @@ def seed(): try: random.seed(os.urandom(64)) except NotImplementedError: - random.seed(random.random()) + random.seed('%s.%s' % (time.time(), os.getpid())) def check_is_writeable(path):