Skip to content

Commit c0294da

Browse files
alexsong93mhamann
authored andcommitted
Fix multiple query parameter issue for dynamic backends (#270)
1 parent f2c9665 commit c0294da

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

scripts/lua/policies/backendRouting.lua

+6-4
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,13 @@ function _M.setDynamicRoute(obj)
5757
end
5858
if utils.tableContains(whitelist, u.host) then
5959
ngx.req.set_uri(getUriPath(u.path))
60-
local query = ngx.req.get_uri_args()
61-
for k, v in pairs(u.query) do
62-
query[k] = v
60+
-- Split the dynamicBackend url to get the query parameters in the exact order that it was passed in.
61+
-- Don't use u.query here because it returns the parameters in an unordered lua table.
62+
local split = {string.match(dynamicBackend, '([^?]*)?(.*)')}
63+
local qs = split[2]
64+
if qs ~= nil then
65+
ngx.req.set_uri_args(qs)
6366
end
64-
ngx.req.set_uri_args(query)
6567
setUpstream(u)
6668
else
6769
request.err(403, 'Dynamic backend host not part of whitelist.')

0 commit comments

Comments
 (0)