Compare commits

...

8 Commits

Author SHA1 Message Date
Stephane Bourque
e717b7a85d Merge pull request #351 from Telecominfraproject/OLS-56-fix-ols-switch-schema-parsing
OLS-56: fix: replaced incorrect case conversion for device type
2024-05-29 09:15:03 -07:00
Ivan Chvets
eeeeb559b6 fix: replaced incorrect case conversion for device type
https://telecominfraproject.atlassian.net/browse/OLS-56

Summary of changes:
- Replaced incorrect case conversion for device type.

Signed-off-by: Ivan Chvets <ivan.chvets@kinarasystems.com>
2024-05-29 11:19:46 -04:00
TIP Automation User
020b5d7fa3 Chg: update image tag in helm values to v3.0.2-RC1 2024-03-22 12:31:58 +00:00
jaspreetsachdev
21776546b3 Merge pull request #348 from Telecominfraproject/WIFI-13542
Wifi 13542
2024-03-22 08:13:31 -04:00
Carsten Schafer
de87df544e Merge remote-tracking branch 'origin/master' into release/v3.0.0 2024-03-21 16:09:42 -04:00
TIP Automation User
df65c4b02a Chg: update image tag in helm values to v3.0.0 2023-12-29 15:19:25 +00:00
TIP Automation User
59e615d149 Chg: update image tag in helm values to v3.0.0-RC3 2023-12-20 18:24:18 +00:00
TIP Automation User
3eb45c219c Chg: update image tag in helm values to v3.0.0-RC1 2023-11-27 17:38:10 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ fullnameOverride: ""
images:
owgw:
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw
tag: master
tag: v3.0.2-RC1
pullPolicy: Always
# regcred:
# registry: tip-tip-wlan-cloud-ucentral.jfrog.io

View File

@@ -31,7 +31,7 @@ namespace OpenWifi {
void reinitialize(Poco::Util::Application &self) override;
inline static ConfigurationType GetType(const std::string &type) {
std::string Type = Poco::toUpper(type);
std::string Type = Poco::toLower(type);
if (Type == Platforms::AP)
return ConfigurationType::AP;
if (Type == Platforms::SWITCH)