Skip to content

Commit

Permalink
style(tools/uri): use table.new correctly (#13103)
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw authored May 30, 2024
1 parent b9ab22c commit 2022ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kong/tools/uri.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ end

local ESCAPE_PATTERN = "[^!#$&'()*+,/:;=?@[\\]A-Z\\d\\-_.~%]"

local TMP_OUTPUT = require("table.new")(16, 0)
local TMP_OUTPUT = table_new(16, 0)
local DOT = string_byte(".")
local SLASH = string_byte("/")

Expand Down

1 comment on commit 2022ac7

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:2022ac7cee500e9d7291119096cea53c5f80fb39
Artifacts available https://github.com/Kong/kong/actions/runs/9295546175

Please sign in to comment.