This is an automated email from the ASF dual-hosted git repository. nic443 pushed a commit to branch feat/upstream-error-differentiation in repository https://gitbox.apache.org/repos/asf/apisix.git
commit 35a4097754e94118b00ce336f6dbb89019856efd Author: Nic <[email protected]> AuthorDate: Tue Apr 14 16:50:40 2026 +0800 fix: localize tostring to satisfy lj-releng lint check --- apisix/core/response.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/apisix/core/response.lua b/apisix/core/response.lua index ba3054511..be9d8f996 100644 --- a/apisix/core/response.lua +++ b/apisix/core/response.lua @@ -38,6 +38,7 @@ local ngx_exit = ngx.exit local concat_tab = table.concat local str_sub = string.sub local tonumber = tonumber +local tostring = tostring local clear_tab = require("table.clear") local pairs = pairs
