This is an automated email from the ASF dual-hosted git repository. jkevan pushed a commit to branch longToIntegerProps in repository https://gitbox.apache.org/repos/asf/unomi.git
commit c2157532674763f29a0437d8cfaff2f50162a2d8 Author: Kevan <[email protected]> AuthorDate: Thu Mar 23 16:30:43 2023 +0100 UNOMI-755: set back age and nbOfVisists prop type as integer --- .../main/resources/META-INF/cxs/properties/profiles/personal/age.json | 2 +- .../resources/META-INF/cxs/properties/profiles/system/nbOfVisits.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/src/main/resources/META-INF/cxs/properties/profiles/personal/age.json b/services/src/main/resources/META-INF/cxs/properties/profiles/personal/age.json index 6ea67ca46..d0ef96ecf 100644 --- a/services/src/main/resources/META-INF/cxs/properties/profiles/personal/age.json +++ b/services/src/main/resources/META-INF/cxs/properties/profiles/personal/age.json @@ -8,7 +8,7 @@ "personalProfileProperties" ] }, - "type": "long", + "type": "integer", "defaultValue": "", "numericRanges": [ {"key":"*_10", "to" : 10 }, diff --git a/services/src/main/resources/META-INF/cxs/properties/profiles/system/nbOfVisits.json b/services/src/main/resources/META-INF/cxs/properties/profiles/system/nbOfVisits.json index d9a371bb7..25180f15f 100644 --- a/services/src/main/resources/META-INF/cxs/properties/profiles/system/nbOfVisits.json +++ b/services/src/main/resources/META-INF/cxs/properties/profiles/system/nbOfVisits.json @@ -8,7 +8,7 @@ "systemProfileProperties" ] }, - "type": "long", + "type": "integer", "defaultValue": "", "automaticMappingsFrom": [ ], "numericRanges": [
