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
deck gateway ping --konnect-addr="https://global.svc.konghq.tech/api" --konnect-token="token-value"
Error: authenticating with Konnect: making HTTP request: Get "https://global.api.konghqhttps//global.svc.konghq.tech/api/v2/organizations/me": dial tcp: lookup global.api.konghqhttps on 10.0.0.2:53: no such host
Notice the invalid URL value: https://global.api.konghqhttps//global.svc.konghq.tech/api/v2/organizations/me.
@johnharris85 dug and noticed that the function assumes the Konnect API URL is always going to include the string api.konghq and does string manipulation based on that [1].
Replace https://(us|eu|au|in|me) with https://global rather than looking for api.konghq
The text was updated successfully, but these errors were encountered:
healthy-pod
changed the title
Konnect URL is invalid when passing --konnect-addr
Konnect URL is invalid when passing --konnect-addr that doesn't contain api.konghqJan 9, 2025
Example:
Notice the invalid URL value:
https://global.api.konghqhttps//global.svc.konghq.tech/api/v2/organizations/me
.@johnharris85 dug and noticed that the function assumes the Konnect API URL is always going to include the string
api.konghq
and does string manipulation based on that [1].Internal slack thread: https://kongstrong.slack.com/archives/C04349E4KRC/p1736367550831169
Acceptance Criteria
https://(us|eu|au|in|me)
withhttps://global
rather than looking forapi.konghq
The text was updated successfully, but these errors were encountered: