chore: remove ununsed variable

This commit is contained in:
CyberL1 2025-01-10 08:45:56 -05:00
parent b1cfeea4c3
commit db464cd92a

View File

@ -24,7 +24,7 @@ server {
rewrite_by_lua_block {
local http = require("resty.http").new()
local res, err = http:request_uri("http://127.0.0.1:3000/containers/" .. ngx.var.container .. "/ip")
local res = http:request_uri("http://127.0.0.1:3000/containers/" .. ngx.var.container .. "/ip")
ngx.var.ip = res.body
}