summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAndrei Zeliankou <zelenkov@nginx.com>2022-08-16 03:11:36 +0100
committerAndrei Zeliankou <zelenkov@nginx.com>2022-08-16 03:11:36 +0100
commitc1ae86e9301b2af332baa6d3ce2164f3e52d0f1d (patch)
treed9dc690ba9a452df6003ac9fbc4b28f1954df1a6 /src
parent22c510066686d4f5c8cecfeb54c0b958b5f5bb3f (diff)
downloadunit-c1ae86e9301b2af332baa6d3ce2164f3e52d0f1d.tar.gz
unit-c1ae86e9301b2af332baa6d3ce2164f3e52d0f1d.tar.bz2
Fixed UNIX sockets support for ASGI.
This change was forgotten in the original implementation 282123ba4f7b.
Diffstat (limited to 'src')
-rw-r--r--src/python/nxt_python_asgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/nxt_python_asgi.c b/src/python/nxt_python_asgi.c
index 172fd60b..4ad0857d 100644
--- a/src/python/nxt_python_asgi.c
+++ b/src/python/nxt_python_asgi.c
@@ -665,7 +665,7 @@ nxt_py_asgi_create_http_scope(nxt_unit_request_info_t *req)
SET_ITEM(scope, query_string, 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)) {
nxt_unit_req_alert(req, "Python failed to create 'client' pair");
goto fail;