Skip to content

Tags: openresty/lua-nginx-module

Tags

v0.10.22

Toggle v0.10.22's commit message
bumped the lua version to 0.10.22.

v0.10.21

Toggle v0.10.21's commit message
bugfix: ngx.pipe waits until timeout because child process forgot to …

…close pipe after dup2.

After the fork, the pipe will be copied by dup2, so there are two fd for the same open file description.

eg: 0, 11 for the same pipe file, 1, 13 for another pipe file.

When running a short life process, the fd will be closed automatically when the process exits.
When running a daemon process, the daemon may close fd 0, fd 1 and redirect them to /dev/null,
but left the fd 11 and fd 13 opened forever.

when ngx.pipe reads from the pipe, it will wait for reading until the pipe is closed or timeout.
Because the daemon won't close the pipe, so ngx.pipe will wait for the timeout.

v0.10.21rc2

Toggle v0.10.21rc2's commit message
bugfix: ngx.pipe waits until timeout because child process forgot to …

…close pipe after dup2.

After the fork, the pipe will be copied by dup2, so there are two fd for the same open file description.

eg: 0, 11 for the same pipe file, 1, 13 for another pipe file.

When running a short life process, the fd will be closed automatically when the process exits.
When running a daemon process, the daemon may close fd 0, fd 1 and redirect them to /dev/null,
but left the fd 11 and fd 13 opened forever.

when ngx.pipe reads from the pipe, it will wait for reading until the pipe is closed or timeout.
Because the daemon won't close the pipe, so ngx.pipe will wait for the timeout.

v0.10.21rc1

Toggle v0.10.21rc1's commit message
tests: NGINX_TEST_CHECK_LEAK detects memoryleak because nginx can not…

… free resolver ctx quickly.

This was introduce in commit acd5364 which is use to resovle double free of resolver ctx.
This issue happens only when nginx can not get any reply from the dns server until timeout.

v0.10.20

Toggle v0.10.20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bumped the API version to 0.10.20.

v0.10.20rc1

Toggle v0.10.20rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bumped the API version to 0.10.20.

v0.10.19

Toggle v0.10.19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bumped the API version to 0.10.19. (#1824)

v0.10.19rc1

Toggle v0.10.19rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bumped the API version to 0.10.19. (#1824)

v0.10.18

Toggle v0.10.18's commit message
bugfix: accessed memory out of range when calling lua_pushfstring wit…

…h none zero-terminated string introduced in commit 7367a23.

v0.10.18rc4

Toggle v0.10.18rc4's commit message
feature: implemented the new tcpsok:setoption() function for setting …

…options for the TCP socket.