Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw committed Aug 22, 2024
1 parent ba7a58e commit 7c035c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lualib/resty/events/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local setmetatable = setmetatable
local str_sub = string.sub


local worker_count = ngx.worker.count()
local worker_count = ngx.worker.count() -- luacheck: ignore


local _M = {
Expand Down
2 changes: 1 addition & 1 deletion lualib/resty/events/utils.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local str_sub = string.sub
local ngx_worker_id = ngx.worker.id
local ngx_worker_id = ngx.worker.id -- luacheck: ignore


local function is_timeout(err)
Expand Down

0 comments on commit 7c035c5

Please sign in to comment.