Skip to content

Commit

Permalink
Merge pull request eugenp#1303 from eugenp/BAEL-574-zipkin
Browse files Browse the repository at this point in the history
BAEL-574 - Removing redundant pattern check
  • Loading branch information
slavisa-baeldung authored Mar 5, 2017
2 parents d848d2d + 28fe826 commit 181688a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public void report(Span span) {
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);
}
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
@EnableZipkinServer
public class ZipkinApplication {
public static void main(String[] args) {
SpringApplication.run(ZipkinApplication.class, args);
}
SpringApplication.run(ZipkinApplication.class, args);
}
}

0 comments on commit 181688a

Please sign in to comment.