Open nickpell opened 7 years ago
I currently have no resources to migrate ws4redis to Django.1.11 Any volunteer here?
I can try to take a look this weekend or early next week
Thanks Emma!
@jrief - looks like this is passing builds. If so, can this get merged in?
After long struggle to get things to work I was able to successfully run the server after making changes from wsgi to asgi configuration, Its not a bad thing as asgi is a successor to wsgi open settings.py delete the wsgi configuration or comment to hide it like the way I did
# WSGI_APPLICATION = 'DjangoBlog.wsgi.application'
ASGI_APPLICATION = 'DjangoBlog.asgi.application'`
then create the file named asgi.py and paste this code inside it
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DjangoBlog.settings')
application = get_asgi_application()
DjangoBlog is the name of my project change it to suit yours
When I execute runserver I get the following error:
Looking at https://github.com/django/django/blame/1.11b1/django/core/handlers/wsgi.py the variable
logger
has been removed.