0

In Wildfly (version 8.2.1) CLI, is there a way to remove using wildcard? For example, if I want to remove all broadcast groups, and I don't want to specify the name:

/subsystem=messaging/hornetq-server=default/broadcast-group=*/:remove

I'm getting an error

{
    "outcome" => "failed",
    "failure-description" => "JBAS014646: Cannot remove *",
    "rolled-back" => true
}
jersey-city-ninja
  • 1,038
  • 11
  • 23

1 Answers1

1

No you have to remove all resources one at a time. Wild cards can only be used in most read operations. All write and remove operations require explicit paths.

James R. Perkins
  • 16,800
  • 44
  • 60