From 9f04d6db630a22658581cbe7a9d28ecdb13d8de9 Mon Sep 17 00:00:00 2001 From: Zhidao HONG Date: Wed, 9 Aug 2023 14:36:16 +0800 Subject: HTTP: stored matched action in nxt_http_request_t. No functional changes. --- src/nxt_http_static.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nxt_http_static.c') 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; } -- cgit