Skip to content

Commit

Permalink
fix(ci) fix nginx resolver address
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Apr 15, 2016
1 parent d4a193e commit 48d7bea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .ci/setup_openresty.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ if [ ! "$(ls -A $OPENRESTY_DIR)" ]; then
pushd $OPENRESTY_BASE
./configure \
--prefix=$OPENRESTY_DIR \
--with-ipv6 \
--without-http_coolkit_module \
--without-lua_resty_dns \
--without-lua_resty_lrucache \
Expand Down
2 changes: 1 addition & 1 deletion t/04-proxy-closures.t → t/04-memoized-closures.t
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ __DATA__
local socket = require 'resty.socket'
local sock = socket.tcp()
local ok, err = sock:connect("www.google.com", 443)
local ok, err = sock:connect('www.google.com', 443)
if ok ~= 1 then
ngx.log(ngx.ERR, 'could not connect: ', err)
return
Expand Down

0 comments on commit 48d7bea

Please sign in to comment.