Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
bclozel committed Dec 19, 2022
1 parent 593b531 commit 3310b59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -70,7 +70,7 @@ static class TracingObservationConfiguration {
@ConditionalOnBean(Propagator.class)
@ConditionalOnMissingBean
@Order(Ordered.HIGHEST_PRECEDENCE + 1)
public PropagationWebGraphQlInterceptor propagationWebGraphQlInterceptor(Propagator propagator) {
PropagationWebGraphQlInterceptor propagationWebGraphQlInterceptor(Propagator propagator) {
return new PropagationWebGraphQlInterceptor(propagator);
}

Expand Down
Expand Up @@ -134,6 +134,7 @@ static class WebGraphQlConfiguration {
WebGraphQlHandler webGraphQlHandler() {
return mock(WebGraphQlHandler.class);
}

}

@Configuration(proxyBeanMethods = false)
Expand All @@ -143,6 +144,7 @@ static class TracingConfiguration {
Propagator propagator() {
return mock(Propagator.class);
}

}

}

0 comments on commit 3310b59

Please sign in to comment.