BAEL-574 - Removing redundant pattern check
This commit is contained in:
parent
348adc878b
commit
28fe826e3b
@ -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);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,6 @@ import zipkin.server.EnableZipkinServer;
|
|||||||
@EnableZipkinServer
|
@EnableZipkinServer
|
||||||
public class ZipkinApplication {
|
public class ZipkinApplication {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ZipkinApplication.class, args);
|
SpringApplication.run(ZipkinApplication.class, args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user