falco
falco copied to clipboard
Fix setup of query string when setting bereq.url
When setting bereq.url
the query string portion of the updated url is lost.
For example the result of the following set statement:
set bereq.url = "/foo?bar=baz";
Will be:
/foo
This PR updates the set logic to match req.url
.