WSGI SERVER_PORT should be a string.
This commit is contained in:
parent
5988b65419
commit
820ac5152e
|
@ -55,7 +55,7 @@ class WSGIAdaptor:
|
||||||
'CONTENT_TYPE': request.headers.get('Content-Type', [''])[0],
|
'CONTENT_TYPE': request.headers.get('Content-Type', [''])[0],
|
||||||
'CONTENT_LENGTH': request.headers.get('Content-Length', [''])[0],
|
'CONTENT_LENGTH': request.headers.get('Content-Length', [''])[0],
|
||||||
'SERVER_NAME': self.domain,
|
'SERVER_NAME': self.domain,
|
||||||
'SERVER_PORT': self.port,
|
'SERVER_PORT': str(self.port),
|
||||||
# FIXME: We need to pick up the protocol read from the request.
|
# FIXME: We need to pick up the protocol read from the request.
|
||||||
'SERVER_PROTOCOL': "HTTP/1.1",
|
'SERVER_PROTOCOL': "HTTP/1.1",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue