We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3dc00 commit bc42f04Copy full SHA for bc42f04
test/Ocelot.UnitTests/Consul/ConsulServiceDiscoveryProviderTests.cs
@@ -38,8 +38,8 @@ public ConsulServiceDiscoveryProviderTests()
38
_serviceName = "test";
39
_port = 8500;
40
_consulHost = "localhost";
41
- _consulScheme = "https";
42
- _fakeConsulServiceDiscoveryUrl = $"http://{_consulHost}:{_port}";
+ _consulScheme = "http";
+ _fakeConsulServiceDiscoveryUrl = $"{_consulScheme}://{_consulHost}:{_port}";
43
_serviceEntries = new List<ServiceEntry>();
44
_factory = new Mock<IOcelotLoggerFactory>();
45
_clientFactory = new ConsulClientFactory();
0 commit comments