Skip to content

Commit

Permalink
SwanSpawner: Fix logic with if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
PMax5 authored and etejedor committed May 29, 2024
1 parent 981d86a commit c1908b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
for( var i = 0 ; i < lcgData.clusters.length ; i++ ){
var lcgCluster = lcgData.clusters[i];

if (lcgCluster.value === "k8s" && lcgCluster.value === "hadoop-qa") {
if (lcgCluster.value === "k8s" || lcgCluster.value === "hadoop-qa") {
continue;
}

Expand Down

0 comments on commit c1908b9

Please sign in to comment.