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
Ok, it looks like I have found the root cause of the failing call. In gatekeeper-sdk in the start function, it creates the API url like this 'API = ${URL}${API};' and these calls were failing because the value of API would persist, breaking the URL. Giving us multiple copies of the base URL when this happened.
let URL = '';
let API = '/api/v1';
let VERSION = '/api/v1';
export async function start(options = {}) {
if (options.url) {
URL = options.url;
API = `${URL}${VERSION}`;
}
if (options.waitUntilReady) {
await waitUntilReady(options);
}
}
The text was updated successfully, but these errors were encountered:
from @DavidKarasek
Ok, it looks like I have found the root cause of the failing call. In gatekeeper-sdk in the start function, it creates the API url like this 'API =
${URL}${API}
;' and these calls were failing because the value of API would persist, breaking the URL. Giving us multiple copies of the base URL when this happened.The text was updated successfully, but these errors were encountered: