Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit 891aa32

Browse files
committed
fix build
1 parent 0a4d906 commit 891aa32

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/GapicSpannerRpc.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@
189189
import com.google.spanner.v1.Transaction;
190190
import io.grpc.CallCredentials;
191191
import io.grpc.Context;
192-
import io.grpc.ManagedChannel;
193192
import io.grpc.ManagedChannelBuilder;
193+
import io.grpc.Channel;
194194
import io.grpc.MethodDescriptor;
195195
import java.io.IOException;
196196
import java.io.UnsupportedEncodingException;
@@ -683,7 +683,7 @@ public <RequestT, ResponseT> UnaryCallable<RequestT, ResponseT> createUnaryCalla
683683

684684
private static KeyAwareChannel extractKeyAwareChannel(TransportChannel transportChannel) {
685685
if (transportChannel instanceof GrpcTransportChannel) {
686-
ManagedChannel channel = ((GrpcTransportChannel) transportChannel).getChannel();
686+
Channel channel = ((GrpcTransportChannel) transportChannel).getChannel();
687687
if (channel instanceof KeyAwareChannel) {
688688
return (KeyAwareChannel) channel;
689689
}

0 commit comments

Comments
 (0)