remove hardcoded check in registry/txt

Signed-off-by: Matias Charriere <matias@giantswarm.io>
This commit is contained in:
Matias Charriere 2023-06-18 13:58:16 +02:00
parent df5e9aeace
commit 65e480df0e
No known key found for this signature in database
GPG Key ID: FBD58286F94A15EA

View File

@ -286,9 +286,6 @@ func (im *TXTRegistry) ApplyChanges(ctx context.Context, changes *plan.Changes)
// PropertyValuesEqual compares two attribute values for equality // PropertyValuesEqual compares two attribute values for equality
func (im *TXTRegistry) PropertyValuesEqual(name string, previous string, current string) bool { func (im *TXTRegistry) PropertyValuesEqual(name string, previous string, current string) bool {
if name == "txt/force-update" {
return false
}
return im.provider.PropertyValuesEqual(name, previous, current) return im.provider.PropertyValuesEqual(name, previous, current)
} }