Commit d67fc4fa by Joneq

修改代码

parent 55fa8eff
Showing with 2 additions and 1 deletions
......@@ -38,6 +38,7 @@ red = redis:new()
red:set_timeout(1000)
local ok, err = red:connect(config.redis_host, config.redis_port)
ngx.say(err)
-- 如果连接失败,跳转到label处
if not ok then
......@@ -47,7 +48,7 @@ if not ok then
end
if config.redis_auth ~= "" then
local ok, err = red:auth(config.redis_auth)
ok, err = red:auth(config.redis_auth)
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment