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
It has been reported that one could get the following error:
when running ohsome2label vector from the server.
ohsome2label vector
We found out this issue was related to the security certificate check in Python requests, especially via the server traffic.
One easy solution/walkaround is to change the following code in your repo:
ohsome2label/ohsome2label/utils.py
Line 22 in 5921866
just to disable the verification, while a better solution should be considered in the future:
r = requests.get(api, params, verify=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It has been reported that one could get the following error:
when running
ohsome2label vector
from the server.We found out this issue was related to the security certificate check in Python requests, especially via the server traffic.
One easy solution/walkaround is to change the following code in your repo:
ohsome2label/ohsome2label/utils.py
Line 22 in 5921866
just to disable the verification, while a better solution should be considered in the future:
r = requests.get(api, params, verify=False)
The text was updated successfully, but these errors were encountered: