Skip to content

Commit

Permalink
COAR NotifyService IT failures: NotifyServiceInboundPatternsRemoveOpe…
Browse files Browse the repository at this point in the history
…ration supports modification to match an exact path
  • Loading branch information
frabacche committed Apr 15, 2024
1 parent 7b88b64 commit 59aa196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ public boolean supports(Object objectToMatch, Operation operation) {
String path = operation.getPath().trim();
return (objectToMatch instanceof NotifyServiceEntity &&
operation.getOp().trim().equalsIgnoreCase(OPERATION_REMOVE) &&
path.startsWith(OPERATION_PATH));
path.startsWith(OPERATION_PATH) && path.endsWith(OPERATION_PATH));
}
}

0 comments on commit 59aa196

Please sign in to comment.