Skip to content

Commit

Permalink
Do not depends on SERVER_SOFTWARE constant from aiohttp
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Mar 22, 2017
1 parent 2144535 commit e1136aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engineio/async_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def translate_request(request):
'wsgi.multithread': False,
'wsgi.multiprocess': False,
'wsgi.run_once': False,
'SERVER_SOFTWARE': aiohttp.HttpMessage.SERVER_SOFTWARE,
'SERVER_SOFTWARE': 'aiohttp',
'REQUEST_METHOD': message.method,
'QUERY_STRING': uri_parts.query or '',
'RAW_URI': message.path,
Expand Down

0 comments on commit e1136aa

Please sign in to comment.