Bumped Boot
fixes gh-1153
This commit is contained in:
@@ -93,7 +93,7 @@ public class TraceWebAutoConfiguration {
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@ConditionalOnClass({ServerProperties.class, WebEndpointProperties.class})
|
||||
@ConditionalOnClass({ ServerProperties.class, WebEndpointProperties.class })
|
||||
protected static class ServerSkipPatternProviderConfig {
|
||||
|
||||
/**
|
||||
|
||||
@@ -73,16 +73,15 @@ public final class HelloServiceGrpc {
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new blocking-style stub that supports unary and streaming
|
||||
* output calls on the service
|
||||
* Creates a new blocking-style stub that supports unary and streaming output calls on
|
||||
* the service
|
||||
*/
|
||||
public static HelloServiceBlockingStub newBlockingStub(io.grpc.Channel channel) {
|
||||
return new HelloServiceBlockingStub(channel);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new ListenableFuture-style stub that supports unary calls on
|
||||
* the service
|
||||
* Creates a new ListenableFuture-style stub that supports unary calls on the service
|
||||
*/
|
||||
public static HelloServiceFutureStub newFutureStub(io.grpc.Channel channel) {
|
||||
return new HelloServiceFutureStub(channel);
|
||||
|
||||
@@ -389,8 +389,7 @@ public class WebClientTests {
|
||||
|
||||
try (Tracer.SpanInScope ws = this.tracer.withSpanInScope(span)) {
|
||||
this.webClient.get().uri("http://localhost:" + this.port + "/noresponse")
|
||||
.retrieve().bodyToMono(String.class)
|
||||
.timeout(Duration.ofMillis(0))
|
||||
.retrieve().bodyToMono(String.class).timeout(Duration.ofMillis(0))
|
||||
.block();
|
||||
}
|
||||
catch (Exception e) {
|
||||
|
||||
Reference in New Issue
Block a user