1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

NETLIFY: Adopt diff2 in compatibility mode (#1896)

This commit is contained in:
Tom Limoncelli
2023-01-18 14:03:16 -05:00
committed by GitHub
parent 77df64d497
commit 02431b5ffc

View File

@@ -194,10 +194,14 @@ func (n *netlifyProvider) GetDomainCorrections(dc *models.DomainConfig) ([]*mode
removeOtherApexNS(dc) removeOtherApexNS(dc)
var corrections []*models.Correction var corrections []*models.Correction
if !diff2.EnableDiff2 || true { // Remove "|| true" when diff2 version arrives var create, del, modify diff.Changeset
if !diff2.EnableDiff2 {
differ := diff.New(dc) differ := diff.New(dc)
_, create, del, modify, err := differ.IncrementalDiff(records) _, create, del, modify, err = differ.IncrementalDiff(records)
} else {
differ := diff.NewCompat(dc)
_, create, del, modify, err = differ.IncrementalDiff(records)
}
if err != nil { if err != nil {
return nil, err return nil, err
} }
@@ -248,11 +252,6 @@ func (n *netlifyProvider) GetDomainCorrections(dc *models.DomainConfig) ([]*mode
corrections = append(corrections, corr) corrections = append(corrections, corr)
} }
return corrections, nil
}
// Insert Future diff2 version here.
return corrections, nil return corrections, nil
} }