Skip to content

Commit

Permalink
MOSIP-35176 Added negation
Browse files Browse the repository at this point in the history
Signed-off-by: kameshsr <[email protected]>
  • Loading branch information
kameshsr committed Oct 1, 2024
1 parent 66ed41f commit 67890d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
throws ServletException, IOException {
logger.info("inside doFilterInternal");
logger.info("HttpServletRequest request- "+request);
if(request.getRequestURI().contains("health")) {
if(!request.getRequestURI().contains("health")) {
String topic = matchCallbackURL(request.getRequestURI());
if (request.getMethod().equals(HttpMethod.GET.name()) && topic != null) {
String topicReq = request.getParameter(WebSubClientConstants.HUB_TOPIC);
Expand Down

0 comments on commit 67890d2

Please sign in to comment.