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
suppose:
base = https://xyz.com/ sql = /sql/v1/
this setup throws error => https://xyz.com/:443/sql/v1/
https://xyz.com/:443/sql/v1/
base = https://xyz.com
saves the day => https://xyz.com:443/sql/v1/
https://xyz.com:443/sql/v1/
Looks like '/' is not handled. But in python counterpart its handled - link
It will be nice if its handled properly
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
suppose:
this setup throws error =>
https://xyz.com/:443/sql/v1/
saves the day =>
https://xyz.com:443/sql/v1/
Looks like '/' is not handled.
But in python counterpart its handled - link
It will be nice if its handled properly
The text was updated successfully, but these errors were encountered: