Browse Source

Fix a couple type-o's and stale bits in Manager

zone-config-cleanup
Ross McFarland 2 months ago
parent
commit
c980220947
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      octodns/manager.py

+ 3
- 3
octodns/manager.py View File

@ -249,7 +249,7 @@ class Manager(object):
self.log.info(
'_preprocess_zones: dynamic zone=%s, sources=%s',
name,
(s.id for s in sources),
list(s.id for s in sources),
)
candidates = set()
for source in sources:
@ -680,12 +680,12 @@ class Manager(object):
s for s in sources if s in self.active_sources
]:
self.log.warning(
'_get_sources: no active souces configured for %s',
'_get_sources: no active sources configured for %s',
decoded_zone_name,
)
return None
self.log.info('sync: sources=%s', sources)
self.log.info('_get_sources: sources=%s', sources)
try:
# rather than using a list comprehension, we break this loop


Loading…
Cancel
Save