Handling change file message in libunit.
This is required for proper log file rotation action.
This commit is contained in:
@@ -2,7 +2,7 @@ def application(environ, start_response):
|
||||
content_length = int(environ.get('CONTENT_LENGTH', 0))
|
||||
body = bytes(environ['wsgi.input'].read(content_length))
|
||||
|
||||
environ['wsgi.errors'].write(body)
|
||||
environ['wsgi.errors'].write(body.decode())
|
||||
environ['wsgi.errors'].flush()
|
||||
|
||||
start_response('200', [('Content-Length', '0')])
|
||||
|
||||
Reference in New Issue
Block a user