We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d540962 commit 6ea37d4Copy full SHA for 6ea37d4
server/grpc-ffmpeg.py
@@ -220,7 +220,8 @@ async def health_check(request):
220
return web.Response(text="Health check failed", status=500)
221
222
async def metrics(request):
223
- return web.Response(body=generate_latest(), content_type=CONTENT_TYPE_LATEST)
+
224
+ return web.Response(body=generate_latest(), headers={"Content-Type": CONTENT_TYPE_LATEST})
225
226
app = web.Application()
227
app.router.add_get('/health', health_check)
0 commit comments