Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apisix/events.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function _M.post(self, ...)
end


function _M.get_healthcheck_events_modele(self)
function _M.get_healthcheck_events_module(self)
if self.events_module == _M.EVENTS_MODULE_LUA_RESTY_EVENTS then
return "resty.events"
else
Expand Down
2 changes: 1 addition & 1 deletion apisix/healthcheck_manager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ local function create_checker(up_conf)
name = get_healthchecker_name(up_conf),
shm_name = healthcheck_shdict_name,
checks = up_conf.checks,
events_module = events:get_healthcheck_events_modele(),
events_module = events:get_healthcheck_events_module(),
})

if not checker then
Expand Down
Loading