Bumping versions

This commit is contained in:
buildmaster
2024-09-12 13:01:27 +00:00
parent 5924b35704
commit 878f5ed8af
3 changed files with 7 additions and 4 deletions

View File

@@ -71,7 +71,8 @@ class KubernetesClientConfigMapPropertySourceTests {
.withNamespace("default")
.withResourceVersion("1")
.build())
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
.addToData(Constants.APPLICATION_YAML,
"dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
.build());
private static WireMockServer wireMockServer;

View File

@@ -103,8 +103,9 @@ class KubernetesClientEventBasedConfigMapChangeDetectorTests {
data.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=0\n"
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
Map<String, String> updateData = new HashMap<>();
updateData.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
updateData.put(Constants.APPLICATION_PROPERTIES,
"spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
V1ConfigMap applicationConfig = new V1ConfigMap().kind("ConfigMap")
.metadata(new V1ObjectMeta().namespace("default").name("bar1"))
.data(data);

View File

@@ -91,7 +91,8 @@ class KubernetesEnvironmentRepositoryTests {
.addItemsItem(new V1ConfigMapBuilder()
.withMetadata(
new V1ObjectMetaBuilder().withName("stores").withNamespace("dev").withResourceVersion("1").build())
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
.addToData(Constants.APPLICATION_YAML,
"dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
.build());
private static final V1SecretList SECRET_LIST = new V1SecretListBuilder()