Potentially breaking changed in URL building #3559
Unanswered
jlcsilva
asked this question in
Potential Issue
Replies: 1 comment 2 replies
-
This looks like a duplicate of #3433 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This PR introduced potentially breaking changes in the way URLs are built.
Previously, the input
url=http://example.com?param=test
andparams={}
would result in a finalself.url=http://example.com?param=test
.Now, the same input results in
self.url=http://example.com
, completely removing the query parameters.Beta Was this translation helpful? Give feedback.
All reactions