Move the module async to _async

This commit is contained in:
Diego Oliveira 2018-05-26 10:22:42 -03:00
parent ba4b927ae5
commit 0a88d19ddf
3 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ from eventlet.wsgi import ALREADY_HANDLED as EVENTLET_ALREADY_HANDLED
import greenlet
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):
while True:

View File

@ -27,7 +27,7 @@ from gevent import pywsgi
import gunicorn
from gunicorn.http.wsgi import base_environ
from gunicorn.workers.async import AsyncWorker
from gunicorn.workers._async import AsyncWorker
from gunicorn.http.wsgi import sendfile as o_sendfile
VERSION = "gevent/%s gunicorn/%s" % (gevent.__version__, gunicorn.__version__)