mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
PEP8
This commit is contained in:
parent
415956da23
commit
2aabf48317
@ -25,6 +25,7 @@ import greenlet
|
|||||||
from gunicorn.http.wsgi import sendfile as o_sendfile
|
from gunicorn.http.wsgi import sendfile as o_sendfile
|
||||||
from gunicorn.workers.async import AsyncWorker
|
from gunicorn.workers.async import AsyncWorker
|
||||||
|
|
||||||
|
|
||||||
def _eventlet_sendfile(fdout, fdin, offset, nbytes):
|
def _eventlet_sendfile(fdout, fdin, offset, nbytes):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
@ -82,6 +83,7 @@ def patch_sendfile():
|
|||||||
if o_sendfile is not None:
|
if o_sendfile is not None:
|
||||||
setattr(wsgi, "sendfile", _eventlet_sendfile)
|
setattr(wsgi, "sendfile", _eventlet_sendfile)
|
||||||
|
|
||||||
|
|
||||||
class EventletWorker(AsyncWorker):
|
class EventletWorker(AsyncWorker):
|
||||||
|
|
||||||
def patch(self):
|
def patch(self):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user