Skip to content

Commit

Permalink
Fix a typo in ASGI docs (#1036)
Browse files Browse the repository at this point in the history
Signed-off-by: Eden Yemini <eden881@gmail.com>
  • Loading branch information
eden881 committed May 28, 2024
1 parent eeec421 commit e364a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/exporting/http/asgi.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ app = make_asgi_app()
Such an application can be useful when integrating Prometheus metrics with ASGI
apps.

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
and compress the response if such a header is present. This behaviour can be disabled by passing
`disable_compression=True` when creating the app, like this:

```python
app = make_asgi_app(disable_compression=True)
```
```

0 comments on commit e364a96

Please sign in to comment.