We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As mentioned in #375, urljoin does strip parts of path in some cases and produced incorrect endpoint URLs.
urljoin
The current implementation has also some flaws...
The main issue is that if the base_url doesn't end with a slash, it is stripped by urljoin.
base_url
If the base_url ends with a slash, the currently produced URl is wrong.
The text was updated successfully, but these errors were encountered:
Fix generation of endpoint urls
3ea5fff
Close #405
dddd054
tpazderka
No branches or pull requests
As mentioned in #375,
urljoin
does strip parts of path in some cases and produced incorrect endpoint URLs.The current implementation has also some flaws...
The main issue is that if the
base_url
doesn't end with a slash, it is stripped byurljoin
.If the
base_url
ends with a slash, the currently produced URl is wrong.The text was updated successfully, but these errors were encountered: