Authored by chunhua.zhang

no

... ... @@ -163,10 +163,11 @@ function main()
-- check white ip
local ret = false
status, errMsg, ret = pcall(is_white);
status, ret = pcall(is_white);
if not status then
ngx.log(ngx.ERR, "call method [is_white] failed.", errMsg)
elseif ret then
ngx.log(ngx.ERR, "call method [is_white] failed.")
end
if ret then
return
end
... ...