From facb32dd8239010157e87f60f38b794e2c614291 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sat, 2 Nov 2024 18:42:54 -0700 Subject: [PATCH] Fixed a broken GitHub link to a shortened commit hash. Signed-off-by: Anders Kaseorg --- django/core/handlers/asgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/handlers/asgi.py b/django/core/handlers/asgi.py index bb6a6bfb3c..64bbd153bc 100644 --- a/django/core/handlers/asgi.py +++ b/django/core/handlers/asgi.py @@ -327,7 +327,7 @@ class ASGIHandler(base.BaseHandler): # - Consume via `__aiter__` and not `streaming_content` directly, to # allow mapping of a sync iterator. # - Use aclosing() when consuming aiter. - # See https://github.com/python/cpython/commit/6e8dcda + # See https://github.com/python/cpython/commit/6e8dcdaaa49d4313bf9fab9f9923ca5828fbb10e # noqa: E501 async with aclosing(aiter(response)) as content: async for part in content: for chunk, _ in self.chunk_bytes(part):