Add comment indicating that the FakeCustomLoadBalancer implementation is not relevant for OcelotBuilder tests.

This commit is contained in:
David Lievrouw 2019-07-11 17:10:19 +02:00
parent 2606d91913
commit 1223c1985f

View File

@ -390,11 +390,13 @@ namespace Ocelot.UnitTests.DependencyInjection
{
public Task<Response<ServiceHostAndPort>> Lease(DownstreamContext context)
{
// Not relevant for these tests
throw new NotImplementedException();
}
public void Release(ServiceHostAndPort hostAndPort)
{
// Not relevant for these tests
throw new NotImplementedException();
}
}