mirror of
https://github.com/Telecominfraproject/wlan-ucentral-schema.git
synced 2026-01-27 10:23:38 +00:00
Merge pull request #76 from Telecominfraproject/WIFI-15031-fix-fingerprinting-raw-mode
WIFI-15031: fix: updated schema to fix fingerprinting raw mode issue
This commit is contained in:
@@ -9,7 +9,7 @@ properties:
|
||||
enum:
|
||||
- polled
|
||||
- final
|
||||
- raw-data
|
||||
- raw
|
||||
default: final
|
||||
minimum-age:
|
||||
description:
|
||||
|
||||
@@ -9561,8 +9561,8 @@ function instantiateServiceFingerprint(location, value, errors) {
|
||||
if (type(value) != "string")
|
||||
push(errors, [ location, "must be of type string" ]);
|
||||
|
||||
if (!(value in [ "polled", "final", "raw-data" ]))
|
||||
push(errors, [ location, "must be one of \"polled\", \"final\" or \"raw-data\"" ]);
|
||||
if (!(value in [ "polled", "final", "raw" ]))
|
||||
push(errors, [ location, "must be one of \"polled\", \"final\" or \"raw\"" ]);
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
@@ -4442,7 +4442,7 @@
|
||||
"enum": [
|
||||
"polled",
|
||||
"final",
|
||||
"raw-data"
|
||||
"raw"
|
||||
],
|
||||
"default": "final"
|
||||
},
|
||||
|
||||
@@ -3384,7 +3384,7 @@
|
||||
"enum": [
|
||||
"polled",
|
||||
"final",
|
||||
"raw-data"
|
||||
"raw"
|
||||
],
|
||||
"default": "final"
|
||||
},
|
||||
|
||||
@@ -3885,7 +3885,7 @@
|
||||
"enum": [
|
||||
"polled",
|
||||
"final",
|
||||
"raw-data"
|
||||
"raw"
|
||||
],
|
||||
"default": "final"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user