Skip to content

Commit 2ae2349

Browse files
author
Clayton Walker
committed
Upgrade grpc and remove unused method
1 parent d75fba5 commit 2ae2349

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
projectVersion = '3.0.0.RELEASE'
1212

1313
// https://github.com/grpc/grpc-java/releases
14-
grpcVersion = '1.60.1'
14+
grpcVersion = '1.61.1'
1515

1616
// https://github.com/google/guava/releases
1717
guavaVersion = '33.0.0-jre'

grpc-client-spring-boot-starter/src/main/java/net/devh/boot/grpc/client/channelfactory/AbstractChannelFactory.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ protected void configure(final T builder, final String name) {
181181
configureKeepAlive(builder, name);
182182
configureSecurity(builder, name);
183183
configureLimits(builder, name);
184-
configureCompression(builder, name);
185184
configureUserAgent(builder, name);
186185
for (final GrpcChannelConfigurer channelConfigurer : this.channelConfigurers) {
187186
channelConfigurer.accept(builder, name);
@@ -251,19 +250,6 @@ protected void configureLimits(final T builder, final String name) {
251250
}
252251
}
253252

254-
/**
255-
* Configures the compression options that should be used by the channel.
256-
*
257-
* @param builder The channel builder to configure.
258-
* @param name The name of the client to configure.
259-
*/
260-
protected void configureCompression(final T builder, final String name) {
261-
final GrpcChannelProperties properties = getPropertiesFor(name);
262-
if (properties.isFullStreamDecompression()) {
263-
builder.enableFullStreamDecompression();
264-
}
265-
}
266-
267253
/**
268254
* Configures custom User-Agent for the channel.
269255
*

0 commit comments

Comments
 (0)