Skip to content

Commit

Permalink
Merge pull request #105 from fybrik/roee88-patch-1
Browse files Browse the repository at this point in the history
fix: getting columns in conf.conf
  • Loading branch information
roee88 authored Oct 21, 2021
2 parents 1cbb064 + 2442ec3 commit 3e2141c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm/afm/files/conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ data:
{{- $removeColumns := list -}}
{{- range .transformations -}}
{{- if eq .action.name "RedactAction" -}}
{{- $redactColumns = append $redactColumns .action.RedactAction.columns -}}
{{- $redactColumns = .action.RedactAction.columns -}}
{{- end -}}
{{- if eq .action.name "RemoveAction" -}}
{{- $removeColumns = append $removeColumns .action.RemoveAction.columns -}}
{{- $removeColumns = .action.RemoveAction.columns -}}
{{- end -}}
{{- end -}}
{{- if $redactColumns }}
Expand Down

0 comments on commit 3e2141c

Please sign in to comment.