keep the configuration as simple as possible, no qos, no cache

This commit is contained in:
geffzhang
2019-01-30 07:36:19 +08:00
parent 7427968261
commit bd7e18ca42
4 changed files with 1 additions and 16 deletions

View File

@ -9,7 +9,6 @@ using Microsoft.Extensions.DependencyInjection;
using Ocelot.DependencyInjection;
using Ocelot.Middleware;
using Ocelot.Provider.Kubernetes;
using Ocelot.Provider.Polly;
namespace ApiGateway
{
@ -20,7 +19,6 @@ namespace ApiGateway
public void ConfigureServices(IServiceCollection services)
{
services.AddOcelot()
.AddPolly()
.AddKubernetes();
}