Merge pull request #1303 from eugenp/BAEL-574-zipkin
BAEL-574 - Removing redundant pattern check
This commit is contained in:
commit
181688a765
|
@ -45,7 +45,6 @@ public class BookServiceApplication {
|
||||||
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
||||||
if (!span.name.matches(skipPattern)) delegate.report(span);
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
}
|
}
|
||||||
if (!span.name.matches(skipPattern)) delegate.report(span);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue