Skip to content

Commit

Permalink
adding param in list for failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
numcys committed Aug 7, 2024
1 parent 490943f commit a27d899
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cli/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ func appExport(rack sdk.Interface, c *stdcli.Context, app string, w io.Writer) e
}

// Remove app unique parameters before exporting app
uniqueParams := []string{"Rack","LogBucket","ResourcePassword"}
uniqueParams := []string{"Rack","LogBucket","ResourcePassword","ParamPassword"}

for _,param := range uniqueParams{
delete(a.Parameters, param);
Expand Down Expand Up @@ -587,6 +587,7 @@ func appImport(rack sdk.Interface, c *stdcli.Context, app string, r io.Reader) e
for k, v := range a.Parameters {
if v != ae.Parameters[k] {
change = true
break
}
}

Expand Down

0 comments on commit a27d899

Please sign in to comment.