From 414f55a320a5c6ee481d639dd3a67b2347ba3b5b Mon Sep 17 00:00:00 2001 From: skaliappan Date: Wed, 6 Sep 2017 09:13:45 +0530 Subject: [PATCH 1/2] fixed typo in maven deps and added missing > in README. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0f3585b5..f9165331 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ This is something that you get for free just by adding the following dependency org.springframework.cloud spring-cloud-starter-kubernetes - ${latest.version> + ${latest.version} ``` @@ -434,7 +434,7 @@ The implementation is part of the following starter that you can use by adding i org.springframework.cloud spring-cloud-starter-kubernetes-netflix - ${latest.version> + ${latest.version} ``` @@ -450,7 +450,7 @@ dedicated `ConfigMap`) using the following format: `.ribbo - `` corresponds to the service name you're accessing over Ribbon, as configured using the `@RibbonClient` annotation (e.g. `name-service` in the example above) -- `` is one of the Ribbon configuration key defined by [Ribbon's CommonClientConfigKey class](https://github.com/Netflix/ribbon/blob/master/ribbon-core/src/main/java/com/netflix/client/config/CommonClientConfigKey.java) Additionally, the `spring-cloud-kubernetes-ribbon` project defines two additional configuration keys to further @@ -488,7 +488,7 @@ can use by adding this starter to your maven pom file: org.springframework.cloud spring-cloud-starter-kubernetes-zipkin - ${latest.version> + ${latest.version} ``` From 56c0cd39044d05ac4fd6d19fb66f9db780d2b3ea Mon Sep 17 00:00:00 2001 From: Sivasamy Kaliappan Date: Thu, 14 Sep 2017 15:54:24 +0530 Subject: [PATCH 2/2] Fixed wrong logger context The logger context was referring to incorrect class name. --- .../cloud/kubernetes/KubernetesAutoConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-kubernetes-core/src/main/java/org/springframework/cloud/kubernetes/KubernetesAutoConfiguration.java b/spring-cloud-kubernetes-core/src/main/java/org/springframework/cloud/kubernetes/KubernetesAutoConfiguration.java index 6a5e75f0..bae47bce 100644 --- a/spring-cloud-kubernetes-core/src/main/java/org/springframework/cloud/kubernetes/KubernetesAutoConfiguration.java +++ b/spring-cloud-kubernetes-core/src/main/java/org/springframework/cloud/kubernetes/KubernetesAutoConfiguration.java @@ -36,7 +36,7 @@ import io.fabric8.kubernetes.client.KubernetesClient; @EnableConfigurationProperties(KubernetesClientProperties.class) public class KubernetesAutoConfiguration { - private static final Log LOG = LogFactory.getLog(KubernetesClientProperties.class); + private static final Log LOG = LogFactory.getLog(KubernetesAutoConfiguration.class); @Bean @ConditionalOnMissingBean(Config.class)