Resolving merge conflicts
This commit is contained in:
@@ -125,6 +125,7 @@ public class KubernetesClientEventBasedConfigMapChangeDetector extends Configura
|
||||
}
|
||||
|
||||
private void onEvent(V1ConfigMap configMap) {
|
||||
this.log.debug(String.format("onEvent configMap: %s", configMap.toString()));
|
||||
boolean changed = changed(locateMapPropertySources(this.propertySourceLocator, this.environment),
|
||||
findPropertySources(KubernetesClientConfigMapPropertySource.class));
|
||||
if (changed) {
|
||||
|
||||
@@ -119,6 +119,7 @@ public class KubernetesClientEventBasedSecretsChangeDetector extends Configurati
|
||||
}
|
||||
|
||||
private void onEvent(V1Secret secret) {
|
||||
this.log.debug(String.format("onEvent configMap: %s", secret.toString()));
|
||||
boolean changed = changed(locateMapPropertySources(this.propertySourceLocator, this.environment),
|
||||
findPropertySources(KubernetesClientSecretsPropertySource.class));
|
||||
if (changed) {
|
||||
|
||||
@@ -119,6 +119,7 @@ public class EventBasedConfigMapChangeDetector extends ConfigurationChangeDetect
|
||||
}
|
||||
|
||||
protected void onEvent(ConfigMap configMap) {
|
||||
this.log.debug(String.format("onEvent configMap: %s", configMap.toString()));
|
||||
boolean changed = changed(
|
||||
locateMapPropertySources(this.fabric8ConfigMapPropertySourceLocator, this.environment),
|
||||
findPropertySources(Fabric8ConfigMapPropertySource.class));
|
||||
|
||||
@@ -119,6 +119,7 @@ public class EventBasedSecretsChangeDetector extends ConfigurationChangeDetector
|
||||
}
|
||||
|
||||
protected void onEvent(Secret secret) {
|
||||
this.log.debug(String.format("onEvent configMap: %s", secret.toString()));
|
||||
boolean changed = changed(locateMapPropertySources(this.fabric8SecretsPropertySourceLocator, this.environment),
|
||||
findPropertySources(Fabric8SecretsPropertySource.class));
|
||||
if (changed) {
|
||||
|
||||
Reference in New Issue
Block a user