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 eeec421 commit e364a96Copy full SHA for e364a96
docs/content/exporting/http/asgi.md
@@ -14,10 +14,10 @@ app = make_asgi_app()
14
Such an application can be useful when integrating Prometheus metrics with ASGI
15
apps.
16
17
-By default, the WSGI application will respect `Accept-Encoding:gzip` headers used by Prometheus
+By default, the ASGI application will respect `Accept-Encoding:gzip` headers used by Prometheus
18
and compress the response if such a header is present. This behaviour can be disabled by passing
19
`disable_compression=True` when creating the app, like this:
20
21
```python
22
app = make_asgi_app(disable_compression=True)
23
-```
+```
0 commit comments