Merged PR 765078: Remove connection timeout from GrpcChannelFactory

This commit is contained in:
Julian Bayardo 2024-02-05 17:49:52 +00:00
Родитель 2b01690d41
Коммит d0b66a3cc0
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -73,11 +73,6 @@ namespace BuildXL.Cache.ContentStore.Service.Grpc
KeepAlivePingPolicy = HttpKeepAlivePingPolicy.WithActiveRequests,
KeepAlivePingDelay = TimeSpan.FromSeconds(30),
KeepAlivePingTimeout = TimeSpan.FromMinutes(1),
// In CASaaS, the connection timeout is controlled by the caller of the GrpcChannelFactory by
// explicitly asking for the connection to be established and awaiting. This value is here to ensure
// there is a maximum timeout in the worst case.
ConnectTimeout = TimeSpan.FromMinutes(5),
};
private static bool HttpsInterceptComplete = false;