Fixed spelling of 'receive' in a bunch of places

pull/1418/head
Simon Willison 2021-08-03 09:11:18 -07:00
rodzic 4adca0d850
commit a679d0de87
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -149,7 +149,7 @@ Create a ``Response`` object and then use ``await response.asgi_send(send)``, pa
.. code-block:: python .. code-block:: python
async def require_authorization(scope, recieve, send): async def require_authorization(scope, receive, send):
response = Response.text( response = Response.text(
"401 Authorization Required", "401 Authorization Required",
headers={ headers={

Wyświetl plik

@ -678,7 +678,7 @@ This example plugin adds a ``x-databases`` HTTP header listing the currently att
def asgi_wrapper(datasette): def asgi_wrapper(datasette):
def wrap_with_databases_header(app): def wrap_with_databases_header(app):
@wraps(app) @wraps(app)
async def add_x_databases_header(scope, recieve, send): async def add_x_databases_header(scope, receive, send):
async def wrapped_send(event): async def wrapped_send(event):
if event["type"] == "http.response.start": if event["type"] == "http.response.start":
original_headers = event.get("headers") or [] original_headers = event.get("headers") or []
@ -691,7 +691,7 @@ This example plugin adds a ``x-databases`` HTTP header listing the currently att
], ],
} }
await send(event) await send(event)
await app(scope, recieve, wrapped_send) await app(scope, receive, wrapped_send)
return add_x_databases_header return add_x_databases_header
return wrap_with_databases_header return wrap_with_databases_header

Wyświetl plik

@ -178,11 +178,11 @@ def actor_from_request(datasette, request):
@hookimpl @hookimpl
def asgi_wrapper(): def asgi_wrapper():
def wrap(app): def wrap(app):
async def maybe_set_actor_in_scope(scope, recieve, send): async def maybe_set_actor_in_scope(scope, receive, send):
if b"_actor_in_scope" in scope.get("query_string", b""): if b"_actor_in_scope" in scope.get("query_string", b""):
scope = dict(scope, actor={"id": "from-scope"}) scope = dict(scope, actor={"id": "from-scope"})
print(scope) print(scope)
await app(scope, recieve, send) await app(scope, receive, send)
return maybe_set_actor_in_scope return maybe_set_actor_in_scope

Wyświetl plik

@ -77,7 +77,7 @@ def extra_template_vars(template, database, table, view_name, request, datasette
def asgi_wrapper(datasette): def asgi_wrapper(datasette):
def wrap_with_databases_header(app): def wrap_with_databases_header(app):
@wraps(app) @wraps(app)
async def add_x_databases_header(scope, recieve, send): async def add_x_databases_header(scope, receive, send):
async def wrapped_send(event): async def wrapped_send(event):
if event["type"] == "http.response.start": if event["type"] == "http.response.start":
original_headers = event.get("headers") or [] original_headers = event.get("headers") or []
@ -94,7 +94,7 @@ def asgi_wrapper(datasette):
} }
await send(event) await send(event)
await app(scope, recieve, wrapped_send) await app(scope, receive, wrapped_send)
return add_x_databases_header return add_x_databases_header