From 03d2c2db9f573d8fbeab9b7c000eef60bc6f9185 Mon Sep 17 00:00:00 2001 From: Julian Bayardo Date: Mon, 13 May 2024 17:48:32 +0000 Subject: [PATCH] Merged PR 784524: Downgrade failure to create gRPC encrypted channels to Info --- .../ContentStore/Library/Service/Grpc/GrpcChannelFactory.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Public/Src/Cache/ContentStore/Library/Service/Grpc/GrpcChannelFactory.cs b/Public/Src/Cache/ContentStore/Library/Service/Grpc/GrpcChannelFactory.cs index 054a46604..f3387cf84 100644 --- a/Public/Src/Cache/ContentStore/Library/Service/Grpc/GrpcChannelFactory.cs +++ b/Public/Src/Cache/ContentStore/Library/Service/Grpc/GrpcChannelFactory.cs @@ -156,7 +156,7 @@ namespace BuildXL.Cache.ContentStore.Service.Grpc if (string.IsNullOrEmpty(channelEncryptionOptions.IdentityTokenPath)) { - Tracer.Error(context, $"Identity token path hasn't been set by host system. Establishing encrypted connections is unsupported."); + Tracer.Info(context, $"Identity token path hasn't been set by host system. Establishing encrypted connections is unsupported."); } else { @@ -164,7 +164,7 @@ namespace BuildXL.Cache.ContentStore.Service.Grpc if (token == null) { - Tracer.Error(context, $"Can't obtain build identity token from identity token path '{channelEncryptionOptions.IdentityTokenPath}'."); + Tracer.Info(context, $"Can't obtain build identity token from identity token path '{channelEncryptionOptions.IdentityTokenPath}'."); } else { @@ -211,7 +211,7 @@ namespace BuildXL.Cache.ContentStore.Service.Grpc } catch (Exception ex) { - Tracer.Error(context, ex, $"Creating Encrypted Grpc Channel Failed."); + Tracer.Info(context, ex, $"Creating encrypted gRPC channel failed. This will not fail the build, we are simply falling back to unencrypted channels."); } }