From a336928e1027af92d0c9bb2ccb369a3f9b53abae Mon Sep 17 00:00:00 2001 From: Zhidao HONG Date: Tue, 7 Sep 2021 21:13:44 +0800 Subject: Router: refactored variable pass. Since the "pass" option supports both strings and variables, a generic nxt_var_t structure can be used in the configuration phase, and the "name" field in actions is redundant. No functional changes. --- src/nxt_http_request.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/nxt_http_request.c') diff --git a/src/nxt_http_request.c b/src/nxt_http_request.c index b71b25d9..ac614df6 100644 --- a/src/nxt_http_request.c +++ b/src/nxt_http_request.c @@ -460,8 +460,6 @@ nxt_http_request_action(nxt_task_t *task, nxt_http_request_t *r, if (nxt_fast_path(action != NULL)) { do { - nxt_debug(task, "http request route: %V", &action->name); - action = action->handler(task, r, action); if (action == NULL) { -- cgit