-
Bug
-
Resolution: Done
-
Major
-
3.0.0.Beta25
-
None
CLI parse following command:
/subsystem=elytron/constant-permission-mapper=test2:add(permissions=[{class-name="abc",action="",target-name=""}])
as:
{ "address" => [ ("subsystem" => "elytron"), ("constant-permission-mapper" => "test2") ], "operation" => "add", "permissions" => [{ "class-name" => "abc", "action" => undefined, <=== should be "" "target-name" => undefined <=== should be "" }] }
Blank strings are interpreted as undefined value by CLI parser.
Problem is somewhere in wildfly-core/cli
- clones
-
JBEAP-10874 empty target-name in constant-permission-mapper is not allowed
- Closed