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

fix(acl) prevent 014_to_015 migration from throwing an error #3953

Merged
merged 1 commit into from
Nov 5, 2018
Merged
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
10 changes: 5 additions & 5 deletions kong/plugins/acl/migrations/001_14_to_15.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ return {
]],

teardown = function(connector, helpers)
local cassandra = require "cassandra"
local coordinator = assert(connector:connect_migrations())

for rows, err in coordinator:iterate("SELECT * FROM acls") do
Expand All @@ -74,11 +75,10 @@ return {
row.consumer_id or "",
row.group or "")

local cql = string.format([[
UPDATE acls SET cache_key = '%s' WHERE id = '%s'
]], cache_key, row.id)

assert(connector:query(cql))
assert(connector:query("UPDATE acls SET cache_key = ? WHERE id = ?", {
cache_key,
cassandra.uuid(row.id),
}))
end
end
end,
Expand Down