-
Bug
-
Resolution: Done
-
Major
-
13.0.8.Final
-
None
When we try to create a cache that contains more than one role mapped on the security, the parser fails.
To reproduce the error: try to create a cache with the console providing this configuration:
works
{
"replicated-cache": {
"mode": "SYNC",
"security": {
"authorization": {
"enabled": true,
"roles": "admin"
}
}
}
}
fails
{
"replicated-cache": {
"mode": "SYNC",
"security": {
"authorization": {
"enabled": true,
"roles": ["admin", "monitor"]
}
}
}
}