Bumped Boot

fixes gh-1153
This commit is contained in:
Marcin Grzejszczak
2019-01-21 14:12:34 +01:00
parent 9d140b1059
commit 8af5b71dda
5 changed files with 8 additions and 10 deletions

View File

@@ -93,7 +93,7 @@ public class TraceWebAutoConfiguration {
}
@Configuration
@ConditionalOnClass({ServerProperties.class, WebEndpointProperties.class})
@ConditionalOnClass({ ServerProperties.class, WebEndpointProperties.class })
protected static class ServerSkipPatternProviderConfig {
/**

View File

@@ -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);

View File

@@ -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) {