SDA-1778 - Load the complete pod url instead of hostname (#893)

This commit is contained in:
Vishwas Shashidhar 2020-03-05 19:16:22 +05:30 committed by GitHub
parent ed2204f395
commit 8a4ec3ec75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -517,7 +517,7 @@ export const isSymphonyReachable = (window: ICustomBrowserWindow | null) => {
fetch(podUrl, { method: 'GET' }).then((rsp) => {
if (rsp.status === 200 && windowHandler.isOnline) {
logger.info(`window-utils: pod ${podUrl} is reachable, loading main window!`);
window.loadURL(podUrl);
window.loadURL(configUrl);
if (networkStatusCheckIntervalId) {
clearInterval(networkStatusCheckIntervalId);
networkStatusCheckIntervalId = null;