diff --git a/src/Microsoft.Tye.Core/Serialization/ConfigServiceParser.cs b/src/Microsoft.Tye.Core/Serialization/ConfigServiceParser.cs index c4f1e4a9..0f617838 100644 --- a/src/Microsoft.Tye.Core/Serialization/ConfigServiceParser.cs +++ b/src/Microsoft.Tye.Core/Serialization/ConfigServiceParser.cs @@ -5,7 +5,6 @@ using System; using System.Collections.Generic; using System.IO; -using System.Linq; using Microsoft.Tye.ConfigModel; using YamlDotNet.RepresentationModel; @@ -346,7 +345,7 @@ namespace Tye.Serialization prober.Port = port; break; case "protocol": - prober.Path = YamlParser.GetScalarValue("protocol", child.Value); + prober.Protocol = YamlParser.GetScalarValue("protocol", child.Value); break; case "headers": prober.Headers = new List>();