Skip to content

Commit

Permalink
Fix is_array var
Browse files Browse the repository at this point in the history
  • Loading branch information
mayocream committed Jan 21, 2022
1 parent 4048af5 commit e06dc88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resty/healthcheck.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ do
end
end

local ok, is_array = pcall(require, "table.isarray")
ok, is_array = pcall(require, "table.isarray")
if not ok then
is_array = function(t)
for k in pairs(t) do
Expand Down

0 comments on commit e06dc88

Please sign in to comment.