Skip to content

Commit

Permalink
BAEL-574 - Removing redundant pattern check
Browse files Browse the repository at this point in the history
  • Loading branch information
slavisa-baeldung committed Mar 5, 2017
1 parent 348adc8 commit 28fe826
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 28fe826

Please sign in to comment.