Browse Source

fix httpprobe protocol (#1447)

pull/1453/head
Rasmus Dybmose 4 years ago
committed by GitHub
parent
commit
deea8a2c15
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/Microsoft.Tye.Core/Serialization/ConfigServiceParser.cs

3
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<KeyValuePair<string, object>>();

Loading…
Cancel
Save