Skip to content

Commit

Permalink
Helm: Map env var values which value is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgitario committed Feb 13, 2023
1 parent b61778c commit 146129f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ public boolean equals(Object o) {

@Override
public int hashCode() {

return Objects.hash(env);
}

Expand All @@ -156,7 +155,7 @@ public Class<? extends Decorator>[] after() {

@Override
public List<ConfigReference> getConfigReferences() {
if (Strings.isNotNullOrEmpty(env.getValue())) {
if (env.getValue() != null) {
return Arrays.asList(buildConfigReferenceForEnvValue());
}

Expand Down

0 comments on commit 146129f

Please sign in to comment.