diff options
author | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-08-31 12:27:17 +0200 |
---|---|---|
committer | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-08-31 12:30:00 +0200 |
commit | ffb43a8b8a17534cc577517082260008673a2c68 (patch) | |
tree | 6a71a0ba97c0d6fa1823183df5bf9910a01135cd /sdnr/wt/odlux/framework/src | |
parent | 25d7a57c8f243fd2e4b7c89596188c6fd2e90e17 (diff) |
Update ODLUX
Update odlux to latest
Issue-ID: CCSDK-3933
Change-Id: I40ed806955c46295c5f2c36d74964a6045576662
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/odlux/framework/src')
-rw-r--r-- | sdnr/wt/odlux/framework/src/services/authenticationService.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/framework/src/services/authenticationService.ts b/sdnr/wt/odlux/framework/src/services/authenticationService.ts index 39f407e40..b9c1a5a94 100644 --- a/sdnr/wt/odlux/framework/src/services/authenticationService.ts +++ b/sdnr/wt/odlux/framework/src/services/authenticationService.ts @@ -87,8 +87,7 @@ class AuthenticationService { } public async getServerReadyState(){ - - const result = await fetch("/ready", {method: "GET"}); + const result = await requestRestExt(`/ready`, { method: "GET" }, false); return result.status == (200 || 304) ? true : false; } } |