From 65e480df0e180a04c46cb44e6ffc703dbc7647b0 Mon Sep 17 00:00:00 2001 From: Matias Charriere Date: Sun, 18 Jun 2023 13:58:16 +0200 Subject: [PATCH] remove hardcoded check in registry/txt Signed-off-by: Matias Charriere --- registry/txt.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/registry/txt.go b/registry/txt.go index f7d79a686..e9411185b 100644 --- a/registry/txt.go +++ b/registry/txt.go @@ -286,9 +286,6 @@ func (im *TXTRegistry) ApplyChanges(ctx context.Context, changes *plan.Changes) // PropertyValuesEqual compares two attribute values for equality 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) }