Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 3374f3e

Browse files
committed
fix: env var naming
1 parent f632843 commit 3374f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/io/javaoperatorsdk/jenvtest/KubeAPIServerConfigBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public KubeAPIServerConfig build() {
6767
}
6868
}
6969
if (waitForEtcdHealthCheckOnStartup == null) {
70-
var waitForEtcdHealthCheckOnStartup = System.getenv(JENVTEST_API_SERVER_VERSION_ENV_VAR);
70+
var waitForEtcdHealthCheckOnStartup = System.getenv(JENVTEST_WAIT_FOR_ETCD_HEALTH_CHECK);
7171
if (waitForEtcdHealthCheckOnStartup != null) {
7272
this.waitForEtcdHealthCheckOnStartup =
7373
Boolean.parseBoolean(waitForEtcdHealthCheckOnStartup);

0 commit comments

Comments
 (0)