Skip to content

Commit

Permalink
HAL-2004: Fix malformed address template
Browse files Browse the repository at this point in the history
  • Loading branch information
hpehl committed Dec 19, 2024
1 parent 49a59da commit 2a5fd22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class ManagementOperationsPresenter extends
private static final String WILDCARD = "*";
private static final String WFLYDM_0089 = "WFLYDM0089";
public static final String MANAGEMENT_OPERATIONS_ADDRESS = "/core-service=management/service=management-operations";
static final String ACTIVE_OPERATIONS_ADDRESS = "{domain.controller}/" + MANAGEMENT_OPERATIONS_ADDRESS
static final String ACTIVE_OPERATIONS_ADDRESS = "{domain.controller}" + MANAGEMENT_OPERATIONS_ADDRESS
+ "/active-operation=*";
private static final AddressTemplate MANAGEMENT_OPERATIONS_TEMPLATE = AddressTemplate.of(MANAGEMENT_OPERATIONS_ADDRESS);
static final AddressTemplate ACTIVE_OPERATIONS_TEMPLATE = AddressTemplate.of(ACTIVE_OPERATIONS_ADDRESS);
Expand Down

0 comments on commit 2a5fd22

Please sign in to comment.