summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_http_static.c
diff options
context:
space:
mode:
authorZhidao HONG <z.hong@f5.com>2023-08-09 14:36:16 +0800
committerZhidao HONG <z.hong@f5.com>2023-08-09 14:36:16 +0800
commit9f04d6db630a22658581cbe7a9d28ecdb13d8de9 (patch)
treec5a255f47699c2b14efe4ea808d926c1168c9b16 /src/nxt_http_static.c
parent497f08d15fc040b3484562cf95dbe242a85fe0df (diff)
downloadunit-9f04d6db630a22658581cbe7a9d28ecdb13d8de9.tar.gz
unit-9f04d6db630a22658581cbe7a9d28ecdb13d8de9.tar.bz2
HTTP: stored matched action in nxt_http_request_t.
No functional changes.
Diffstat (limited to 'src/nxt_http_static.c')
-rw-r--r--src/nxt_http_static.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nxt_http_static.c b/src/nxt_http_static.c
index 5e44aab4..e51ba6b0 100644
--- a/src/nxt_http_static.c
+++ b/src/nxt_http_static.c
@@ -696,6 +696,8 @@ nxt_http_static_next(nxt_task_t *task, nxt_http_request_t *r,
if (nxt_slow_path(r->log_route)) {
nxt_log(task, NXT_LOG_NOTICE, "\"fallback\" taken");
}
+
+ r->action = action->fallback;
nxt_http_request_action(task, r, action->fallback);
return;
}