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

Cleanup: Bubble errors up from diff instead of panic (#799) (#817)

This commit is contained in:
Mike Cochrane
2020-08-21 07:49:00 +12:00
committed by GitHub
parent 79357bb667
commit 59747a96f0
27 changed files with 122 additions and 36 deletions

View File

@@ -77,7 +77,10 @@ func (n *nsone) GetDomainCorrections(dc *models.DomainConfig) ([]*models.Correct
models.PostProcessRecords(found)
differ := diff.New(dc)
changedGroups := differ.ChangedGroups(found)
changedGroups, err := differ.ChangedGroups(found)
if err != nil {
return nil, err
}
corrections := []*models.Correction{}
// each name/type is given to the api as a unit.
for k, descs := range changedGroups {