Fixed UNIX sockets support for ASGI.

This change was forgotten in the original implementation 282123ba4f7b.
This commit is contained in:
Andrei Zeliankou
2022-08-16 03:11:36 +01:00
parent 22c5100666
commit c1ae86e930

View File

@@ -665,7 +665,7 @@ nxt_py_asgi_create_http_scope(nxt_unit_request_info_t *req)
SET_ITEM(scope, query_string, v) SET_ITEM(scope, query_string, v)
Py_DECREF(v); Py_DECREF(v);
v = nxt_py_asgi_create_ip_address(&r->remote, r->remote_length, 0); v = nxt_py_asgi_create_address(&r->remote, r->remote_length, 0);
if (nxt_slow_path(v == NULL)) { if (nxt_slow_path(v == NULL)) {
nxt_unit_req_alert(req, "Python failed to create 'client' pair"); nxt_unit_req_alert(req, "Python failed to create 'client' pair");
goto fail; goto fail;