mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Add zones aliases support to octodns-compare command
This commit is contained in:
@@ -399,12 +399,11 @@ class Manager(object):
|
|||||||
except KeyError as e:
|
except KeyError as e:
|
||||||
raise ManagerException('Unknown source: {}'.format(e.args[0]))
|
raise ManagerException('Unknown source: {}'.format(e.args[0]))
|
||||||
|
|
||||||
sub_zones = self.configured_sub_zones(zone)
|
za = self.get_zone(zone)
|
||||||
za = Zone(zone, sub_zones)
|
|
||||||
for source in a:
|
for source in a:
|
||||||
source.populate(za)
|
source.populate(za)
|
||||||
|
|
||||||
zb = Zone(zone, sub_zones)
|
zb = self.get_zone(zone)
|
||||||
for source in b:
|
for source in b:
|
||||||
source.populate(zb)
|
source.populate(zb)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user