Skip to content

Commit edd88b7

Browse files
committed
a minor change jenkins-ignore
1 parent 38f777e commit edd88b7

File tree

1 file changed

+2
-1
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator/utils

1 file changed

+2
-1
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/utils/Domain.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,8 @@ protected void initialize(Map<String, Object> inputDomainMap) throws Exception {
12961296

12971297
this.voyager =
12981298
(System.getenv("LB_TYPE") != null && System.getenv("LB_TYPE").equalsIgnoreCase("VOYAGER"))
1299-
|| (inputDomainMap.containsValue("VOYAGER"));
1299+
|| (inputDomainMap.containsKey("LB_TYPE")
1300+
&& ((String) inputDomainMap.get("LB_TYPE")).equalsIgnoreCase("VOYAGER"));
13001301

13011302
if (System.getenv("INGRESSPERDOMAIN") != null) {
13021303
INGRESSPERDOMAIN = new Boolean(System.getenv("INGRESSPERDOMAIN")).booleanValue();

0 commit comments

Comments
 (0)