There was an error while loading. Please reload this page.
2 parents 9157152 + f145e90 commit 46b2cffCopy full SHA for 46b2cff
gunicorn/workers/ggevent.py
@@ -76,6 +76,8 @@ def run(self):
76
else:
77
hfun = partial(self.handle, s)
78
server = StreamServer(s, handle=hfun, spawn=pool, **ssl_args)
79
+ if self.cfg.workers > 1:
80
+ server.max_accept = 1
81
82
server.start()
83
servers.append(server)
0 commit comments