SDA-4560 Update endpoint to check network connectivity (#2169)

* SDA-4560 Update endpoint to check network connectivity

* Electron upgrade - v31.1.0
This commit is contained in:
Salah Benmoussati 2024-06-27 12:32:52 +02:00 committed by GitHub
parent da52153114
commit e6ee38d1c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@
"builder-util-runtime": "^9.0.3",
"cross-env": "7.0.3",
"del": "3.0.0",
"electron": "30.1.0",
"electron": "31.1.0",
"electron-builder": "^24.13.2",
"electron-devtools-installer": "^3.2.0",
"electron-icon-maker": "0.0.5",

View File

@ -778,7 +778,7 @@ export const isSymphonyReachable = (
if (!hostname || !protocol) {
return;
}
const podUrl = `${protocol}//${hostname}`;
const podUrl = `${protocol}//${hostname}/apps/client2/version`;
logger.info(`window-utils: checking to see if pod ${podUrl} is reachable!`);
fetch(podUrl, { method: 'GET' })
.then(async (rsp) => {