From 21638cad332ee6ae4c857a172c0aee09cb4f54e5 Mon Sep 17 00:00:00 2001 From: gulnaz Date: Fri, 16 May 2025 13:34:33 +0300 Subject: [PATCH] SUPPORT-9170: add health request to auth service --- frontend/src/ts/modules/security/authentication.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/modules/security/authentication.service.ts b/frontend/src/ts/modules/security/authentication.service.ts index f13fe79..f6267ff 100644 --- a/frontend/src/ts/modules/security/authentication.service.ts +++ b/frontend/src/ts/modules/security/authentication.service.ts @@ -13,7 +13,7 @@ export class AuthenticationService { } checkAuthentication(): Promise{ - return this.appConfigService.load(); + return this.appConfigService.load().then(() => this.http.get("health").toPromise()); } logout(): Promise {