You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This lib will append double slahes to the API endpoints, instead of https://site.com/api/v1/checks it generates them as https://site.com/api/v1//checks.
While this works with the public version it will not work out of the box if its a self-hosted instance
A pull-request will follow fixing this issue
The text was updated successfully, but these errors were encountered:
Just came across the same issue, but the situation seems slightly more differentiated. I was running the self-hosted version successfully inside docker and behind an Apache proxy. The clients using this SDK had no issues whatsoever.
Yesterday, I replaced Apache with Traefik as the reverse proxy, and suddenly this problem came up. My guess is that Apache proxy probably autocorrects double slashes in paths.
In any event, sending double slashes in the first place seems wrong and I can confirm that #77 solves the problem.
This lib will append double slahes to the API endpoints, instead of
https://site.com/api/v1/checks
it generates them ashttps://site.com/api/v1//checks
.While this works with the public version it will not work out of the box if its a self-hosted instance
A pull-request will follow fixing this issue
The text was updated successfully, but these errors were encountered: