Browse Source

Merge pull request #671 from octodns/making-changes-info

Add the number of changes and zone name to "making changes"
pull/675/head
Ross McFarland 5 years ago
committed by GitHub
parent
commit
89356f8302
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      octodns/provider/base.py

+ 4
- 1
octodns/provider/base.py View File

@ -91,7 +91,10 @@ class BaseProvider(BaseSource):
self.log.info('apply: disabled')
return 0
self.log.info('apply: making changes')
zone_name = plan.desired.name
num_changes = len(plan.changes)
self.log.info('apply: making %d changes to %s', num_changes,
zone_name)
self._apply(plan)
return len(plan.changes)


Loading…
Cancel
Save