Skip to content

Commit 6b3822b

Browse files
committed
bugfix: added missing arguments to an 'ngx_log_error()' call in ngx_http_lua_pipe.c.
1 parent 9fa316f commit 6b3822b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ngx_http_lua_pipe.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,8 @@ ngx_http_lua_ffi_pipe_proc_destroy(ngx_http_lua_ffi_pipe_proc_t *proc)
11331133
if (kill(proc->_pid, SIGKILL) == -1) {
11341134
if (ngx_errno != ESRCH) {
11351135
ngx_log_error(NGX_LOG_ERR, ngx_cycle->log, ngx_errno,
1136-
"lua pipe failed to kill process:%p pid:%P");
1136+
"lua pipe failed to kill process:%p pid:%P",
1137+
proc, proc->_pid);
11371138
}
11381139
}
11391140
}

0 commit comments

Comments
 (0)