GERONIMO-6702 ensure we read the right value when trying to skip the tracing of some urls
diff --git a/geronimo-opentracing-common/src/main/java/org/apache/geronimo/microprofile/opentracing/common/microprofile/server/OpenTracingFilter.java b/geronimo-opentracing-common/src/main/java/org/apache/geronimo/microprofile/opentracing/common/microprofile/server/OpenTracingFilter.java
index e542ae9..a3e7da8 100644
--- a/geronimo-opentracing-common/src/main/java/org/apache/geronimo/microprofile/opentracing/common/microprofile/server/OpenTracingFilter.java
+++ b/geronimo-opentracing-common/src/main/java/org/apache/geronimo/microprofile/opentracing/common/microprofile/server/OpenTracingFilter.java
@@ -148,7 +148,7 @@
         if (skipUrls != null && !skipUrls.isEmpty()) {
             final HttpServletRequest req = HttpServletRequest.class.cast(request);
             final String matching = req.getRequestURI().substring(req.getContextPath().length());
-            if (forcedUrls.stream().anyMatch(p -> p.test(matching))) {
+            if (skipUrls.stream().anyMatch(p -> p.test(matching))) {
                 chain.doFilter(request, response);
                 return;
             }