diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-09-05 15:56:37 -0700 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-09-05 15:56:37 -0700 |
commit | f0723995a75d350b82ed0595e68a82b729f42b8f (patch) | |
tree | c46243d56ef155b7b8d386d451576e94838a96a6 /src/nxt_router.c | |
parent | 0f9f0ca522fe2413d3bfb79f38c84eeaf84a17a4 (diff) | |
download | unit-f0723995a75d350b82ed0595e68a82b729f42b8f.tar.gz unit-f0723995a75d350b82ed0595e68a82b729f42b8f.tar.bz2 |
Fixing request id logging.
Diffstat (limited to 'src/nxt_router.c')
-rw-r--r-- | src/nxt_router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_router.c b/src/nxt_router.c index 65ef7298..b91aa9ae 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -254,7 +254,7 @@ nxt_router_ra_create(nxt_task_t *task, nxt_req_conn_link_t *rc) return NULL; } - nxt_debug(task, "ra #%uxD create", ra->req_id); + nxt_debug(task, "ra #%uxD create", rc->req_id); nxt_memzero(ra, sizeof(nxt_req_app_link_t)); |