Skip to content

Commit b94c3ba

Browse files
authored
fix(storage): remove default timeout for gRPC operations (googleapis#13022)
1 parent 4f91ba9 commit b94c3ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/grpc_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ func newGRPCStorageClient(ctx context.Context, opts ...storageOption) (*grpcStor
143143
s := initSettings(opts...)
144144
s.clientOption = append(defaultGRPCOptions(), s.clientOption...)
145145
// Disable all gax-level retries in favor of retry logic in the veneer client.
146-
s.gax = append(s.gax, gax.WithRetry(nil))
146+
s.gax = append(s.gax, gax.WithRetry(nil), gax.WithTimeout(0))
147147

148148
config := newStorageConfig(s.clientOption...)
149149
if config.readAPIWasSet {

0 commit comments

Comments
 (0)