Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): import resty.mlcache from lua-resty-mlcache #10989

Merged
merged 3 commits into from
Jun 3, 2023
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
4 changes: 3 additions & 1 deletion kong-3.4.0-0.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ dependencies = {
"luaxxhash >= 1.0",
"lua-protobuf == 0.5.0",
"lua-resty-healthcheck == 1.6.2",
"lua-resty-mlcache == 2.6.0",
"lua-messagepack == 0.5.2",
"lua-resty-openssl == 0.8.22",
"lua-resty-counter == 0.2.1",
Expand Down Expand Up @@ -94,6 +93,9 @@ build = {
["kong.resty.dns.utils"] = "kong/resty/dns/utils.lua",
["kong.resty.ctx"] = "kong/resty/ctx.lua",

["kong.resty.mlcache"] = "kong/resty/mlcache/init.lua",
["kong.resty.mlcache.ipc"] = "kong/resty/mlcache/ipc.lua",

["kong.cmd"] = "kong/cmd/init.lua",
["kong.cmd.roar"] = "kong/cmd/roar.lua",
["kong.cmd.stop"] = "kong/cmd/stop.lua",
Expand Down
2 changes: 1 addition & 1 deletion kong/cache/init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local resty_mlcache = require "resty.mlcache"
local resty_mlcache = require "kong.resty.mlcache"
local marshall = require "kong.cache.marshall"


Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/pre-function/_handler.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local resty_mlcache = require "resty.mlcache"
local resty_mlcache = require "kong.resty.mlcache"
local sandbox = require "kong.tools.sandbox"
local kong_meta = require "kong.meta"

Expand Down
Loading