Skip to content

Commit 7b74739

Browse files
authored
Merge pull request #519 from alex268/release_v2.4.0
Upgrade to grpc-java v1.68.3
2 parents 9239240 + 5024abc commit 7b74739

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<properties>
1717
<ydb-auth-api.version>1.0.0</ydb-auth-api.version>
18-
<ydb-proto-api.version>1.7.1</ydb-proto-api.version>
18+
<ydb-proto-api.version>1.8.0</ydb-proto-api.version>
1919
<yc-auth.version>2.2.0</yc-auth.version>
2020
</properties>
2121

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>io.grpc</groupId>
3131
<artifactId>grpc-netty</artifactId>
32-
<version>1.59.1</version>
32+
<version>1.68.3</version>
3333
<optional>true</optional>
3434
</dependency>
3535

core/src/test/java/tech/ydb/core/impl/pool/DefaultChannelFactoryTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public void customChannelInitializer() {
124124
.withUseDefaultGrpcResolver(true);
125125

126126
ManagedChannelFactory factory = ShadedNettyChannelFactory
127-
.withInterceptor(ForwardingChannelBuilder2::enableFullStreamDecompression)
127+
.withInterceptor(ForwardingChannelBuilder2::useTransportSecurity)
128128
.buildFactory(builder);
129129

130130
channelStaticMock.verify(FOR_ADDRESS, Mockito.times(0));
@@ -141,7 +141,7 @@ public void customChannelInitializer() {
141141
Mockito.verify(channelBuilderMock, Mockito.times(1))
142142
.withOption(ChannelOption.ALLOCATOR, ByteBufAllocator.DEFAULT);
143143
Mockito.verify(channelBuilderMock, Mockito.times(1)).withOption(ChannelOption.TCP_NODELAY, Boolean.TRUE);
144-
Mockito.verify(channelBuilderMock, Mockito.times(1)).enableFullStreamDecompression();
144+
Mockito.verify(channelBuilderMock, Mockito.times(1)).useTransportSecurity();
145145
}
146146

147147
@Test

0 commit comments

Comments
 (0)