Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coordinator: fix equality checks for manifest properties #777

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix DisableSecretBinding ignored in Marble.Equal
  • Loading branch information
thomasten authored and daniel-weisse committed Dec 13, 2024
commit 9d0a0d8f73d6901bedf449d1c9d6db40849a5ada
3 changes: 2 additions & 1 deletion coordinator/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 113,8 @@ func (m Marble) Equal(other Marble) bool {

return m.Package == other.Package &&
m.MaxActivations == other.MaxActivations &&
m.Parameters.Equal(other.Parameters)
m.Parameters.Equal(other.Parameters) &&
m.DisableSecretBinding == other.DisableSecretBinding
}

// Parameters contains lists for files, environment variables and commandline arguments that should be passed to an application.
Expand Down