daemon: Add missing await.

This commit is contained in:
Damir Jelić 2019-06-18 15:35:50 +02:00
parent aafc56b44d
commit 0ad0da2151

View File

@ -495,7 +495,7 @@ class ProxyDaemon:
status=response.status,
content_type=response.content_type,
headers=CORS_HEADERS,
body=response.read()
body=await response.read()
)
except ClientConnectionError as e:
return web.Response(status=500, text=str(e))