Skip to content

Commit 2378bd7

Browse files
authored
Merge pull request #431 from Telecominfraproject/WIFI_15313_fix_schema_sync
WIFI-15313: fix: schema sync on max channel value
2 parents 3e5c962 + 87f7d11 commit 2378bd7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/framework/ConfigurationValidator.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ static std::string DefaultAPSchema = R"foo(
568568
"oneOf": [
569569
{
570570
"type": "integer",
571-
"maximum": 196,
571+
"maximum": 233,
572572
"minimum": 1
573573
},
574574
{
@@ -582,7 +582,7 @@ static std::string DefaultAPSchema = R"foo(
582582
"type": "array",
583583
"items": {
584584
"type": "integer",
585-
"maximum": 196,
585+
"maximum": 233,
586586
"minimum": 1
587587
}
588588
},
@@ -4916,7 +4916,7 @@ static std::string DefaultSWITCHSchema = R"foo(
49164916
"oneOf": [
49174917
{
49184918
"type": "integer",
4919-
"maximum": 196,
4919+
"maximum": 233,
49204920
"minimum": 1
49214921
},
49224922
{
@@ -4929,7 +4929,7 @@ static std::string DefaultSWITCHSchema = R"foo(
49294929
"type": "array",
49304930
"items": {
49314931
"type": "integer",
4932-
"maximum": 196,
4932+
"maximum": 233,
49334933
"minimum": 1
49344934
}
49354935
},

0 commit comments

Comments
 (0)