aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework
diff options
context:
space:
mode:
authorsai-neetha <sai-neetha.phulmali@highstreet-technologies.com>2023-08-31 12:27:17 +0200
committersai-neetha <sai-neetha.phulmali@highstreet-technologies.com>2023-08-31 12:30:00 +0200
commitffb43a8b8a17534cc577517082260008673a2c68 (patch)
tree6a71a0ba97c0d6fa1823183df5bf9910a01135cd /sdnr/wt/odlux/framework
parent25d7a57c8f243fd2e4b7c89596188c6fd2e90e17 (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')
-rw-r--r--sdnr/wt/odlux/framework/pom.xml2
-rw-r--r--sdnr/wt/odlux/framework/src/services/authenticationService.ts3
2 files changed, 2 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/framework/pom.xml b/sdnr/wt/odlux/framework/pom.xml
index d0dee60a8..1146f5954 100644
--- a/sdnr/wt/odlux/framework/pom.xml
+++ b/sdnr/wt/odlux/framework/pom.xml
@@ -45,7 +45,7 @@
<properties>
<buildtime>${maven.build.timestamp}</buildtime>
<distversion>ONAP Frankfurt (Neon, mdsal ${odl.mdsal.version})</distversion>
- <buildno>188.1b12eac8(23/06/30)</buildno>
+ <buildno>190.d02fb971(23/08/31)</buildno>
<odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version>
</properties>
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;
}
}