From 1cef021c77571f066251383a66838e12a19eb48e Mon Sep 17 00:00:00 2001 From: buildmaster Date: Thu, 10 Nov 2022 03:57:12 +0000 Subject: [PATCH] Bumping versions --- .../Fabric8ConfigDataLocationResolver.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spring-cloud-kubernetes-fabric8-config/src/main/java/org/springframework/cloud/kubernetes/fabric8/config/Fabric8ConfigDataLocationResolver.java b/spring-cloud-kubernetes-fabric8-config/src/main/java/org/springframework/cloud/kubernetes/fabric8/config/Fabric8ConfigDataLocationResolver.java index 5620f424..a67afbd4 100644 --- a/spring-cloud-kubernetes-fabric8-config/src/main/java/org/springframework/cloud/kubernetes/fabric8/config/Fabric8ConfigDataLocationResolver.java +++ b/spring-cloud-kubernetes-fabric8-config/src/main/java/org/springframework/cloud/kubernetes/fabric8/config/Fabric8ConfigDataLocationResolver.java @@ -60,26 +60,26 @@ public class Fabric8ConfigDataLocationResolver extends KubernetesConfigDataLocat if (configMapProperties != null && configMapProperties.enabled()) { ConfigMapPropertySourceLocator configMapPropertySourceLocator = new Fabric8ConfigMapPropertySourceLocator( - kubernetesClient, configMapProperties, namespaceProvider); + kubernetesClient, configMapProperties, namespaceProvider); if (isRetryEnabledForConfigMap(configMapProperties)) { configMapPropertySourceLocator = new ConfigDataRetryableConfigMapPropertySourceLocator( - configMapPropertySourceLocator, configMapProperties); + configMapPropertySourceLocator, configMapProperties); } - registerSingle(bootstrapContext, ConfigMapPropertySourceLocator.class, - configMapPropertySourceLocator, "configDataConfigMapPropertySourceLocator"); + registerSingle(bootstrapContext, ConfigMapPropertySourceLocator.class, configMapPropertySourceLocator, + "configDataConfigMapPropertySourceLocator"); } if (secretsProperties != null && secretsProperties.enabled()) { SecretsPropertySourceLocator secretsPropertySourceLocator = new Fabric8SecretsPropertySourceLocator( - kubernetesClient, secretsProperties, namespaceProvider); + kubernetesClient, secretsProperties, namespaceProvider); if (isRetryEnabledForSecrets(secretsProperties)) { secretsPropertySourceLocator = new ConfigDataRetryableSecretsPropertySourceLocator( - secretsPropertySourceLocator, secretsProperties); + secretsPropertySourceLocator, secretsProperties); } - registerSingle(bootstrapContext, SecretsPropertySourceLocator.class, - secretsPropertySourceLocator, "configDataSecretsPropertySourceLocator"); + registerSingle(bootstrapContext, SecretsPropertySourceLocator.class, secretsPropertySourceLocator, + "configDataSecretsPropertySourceLocator"); } }