Skip to content

Commit

Permalink
Polish "Fix invalid Zipkin Reporter back-off behavior"
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed May 17, 2023
1 parent 903e198 commit 4072588
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ ZipkinWebClientSender webClientSender(ZipkinProperties properties,
static class ReporterConfiguration {

@Bean
@ConditionalOnMissingBean
@ConditionalOnMissingBean(Reporter.class)
@ConditionalOnBean(Sender.class)
Reporter<Span> spanReporter(Sender sender, BytesEncoder<Span> encoder) {
AsyncReporter<Span> spanReporter(Sender sender, BytesEncoder<Span> encoder) {
return AsyncReporter.builder(sender).build(encoder);
}

Expand Down

0 comments on commit 4072588

Please sign in to comment.