commit | 13d08b73eb99741ca5903e8414b85a1d0b919594 | [log] [tgz] |
---|---|---|
author | Thierry Fournier <thierry.fournier@ozon.io> | Sat Nov 28 11:02:58 2020 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Wed Dec 02 09:45:18 2020 +0100 |
tree | 71af27ce32423d28c97164b75b04ddc1b9f6775d | |
parent | 77a88943d6a0d7852c25a03541d60ccf44aa5c6d [diff] |
BUG/MINOR: lua: Post init register function are not executed beyond the first one Just because if the first init is a success we return success in place of continuing the loop. This patch could be backported until 1.8
diff --git a/src/hlua.c b/src/hlua.c index 49db0f3..e1c316b 100644 --- a/src/hlua.c +++ b/src/hlua.c
@@ -8128,7 +8128,7 @@ switch (ret) { case HLUA_E_OK: lua_pop(gL.T, -1); - return 1; + break; case HLUA_E_AGAIN: ha_alert("Lua init: yield not allowed.\n"); return 0;