From 1d9df40af8cc759fbd156b59509dcd95b69cb9fc Mon Sep 17 00:00:00 2001 From: Andrew Stakhov Date: Fri, 29 Mar 2019 15:10:44 -0400 Subject: [PATCH] Change to use steeltoe discovery instead of pivotal discovery and bump up the version to be compatible with newer libraries due to interface change (#844) --- .../EurekaMiddlewareConfigurationProvider.cs | 2 +- src/Ocelot.Provider.Eureka/Ocelot.Provider.Eureka.csproj | 2 +- src/Ocelot.Provider.Eureka/OcelotBuilderExtensions.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Ocelot.Provider.Eureka/EurekaMiddlewareConfigurationProvider.cs b/src/Ocelot.Provider.Eureka/EurekaMiddlewareConfigurationProvider.cs index fa19f2ea..ac6bba72 100644 --- a/src/Ocelot.Provider.Eureka/EurekaMiddlewareConfigurationProvider.cs +++ b/src/Ocelot.Provider.Eureka/EurekaMiddlewareConfigurationProvider.cs @@ -5,7 +5,7 @@ using Configuration.Repository; using Microsoft.Extensions.DependencyInjection; using Middleware; - using Pivotal.Discovery.Client; + using Steeltoe.Discovery.Client; public class EurekaMiddlewareConfigurationProvider { diff --git a/src/Ocelot.Provider.Eureka/Ocelot.Provider.Eureka.csproj b/src/Ocelot.Provider.Eureka/Ocelot.Provider.Eureka.csproj index c59c1a37..6373e90a 100644 --- a/src/Ocelot.Provider.Eureka/Ocelot.Provider.Eureka.csproj +++ b/src/Ocelot.Provider.Eureka/Ocelot.Provider.Eureka.csproj @@ -29,7 +29,7 @@ - + all diff --git a/src/Ocelot.Provider.Eureka/OcelotBuilderExtensions.cs b/src/Ocelot.Provider.Eureka/OcelotBuilderExtensions.cs index 75a85767..0e69d433 100644 --- a/src/Ocelot.Provider.Eureka/OcelotBuilderExtensions.cs +++ b/src/Ocelot.Provider.Eureka/OcelotBuilderExtensions.cs @@ -5,7 +5,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Middleware; - using Pivotal.Discovery.Client; + using Steeltoe.Discovery.Client; using ServiceDiscovery; public static class OcelotBuilderExtensions