Skip to content

Commit

Permalink
style(tools): should not use tools.utils module (Kong#13615)
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw authored and andrewgkew committed Sep 5, 2024
1 parent 75d6c84 commit 78b5ebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kong/llm/proxy/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local llm_state = require("kong.llm.state")
local cjson = require("cjson.safe")
local kong_utils = require("kong.tools.gzip")
local buffer = require "string.buffer"
local strip = require("kong.tools.utils").strip
local strip = require("kong.tools.string").strip
local cycle_aware_deep_copy = require("kong.tools.table").cycle_aware_deep_copy


Expand Down
2 changes: 1 addition & 1 deletion kong/observability/logs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ end
local request_id_get = require "kong.observability.tracing.request_id".get
local time_ns = require "kong.tools.time".time_ns
local table_merge = require "kong.tools.table".table_merge
local deep_copy = require "kong.tools.utils".deep_copy
local deep_copy = require "kong.tools.table".deep_copy

local get_log_level = require "resty.kong.log".get_log_level
local constants_log_levels = require "kong.constants".LOG_LEVELS
Expand Down

0 comments on commit 78b5ebc

Please sign in to comment.