Browse Source

skip monitors that are not managed by OctoDNS

pull/737/head
Sham 5 years ago
parent
commit
303e439a54
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      octodns/provider/ns1.py

+ 2
- 0
octodns/provider/ns1.py View File

@ -849,6 +849,8 @@ class Ns1Provider(BaseProvider):
for monitor in self._client.monitors.values():
data = self._parse_notes(monitor['notes'])
if not data:
continue
if expected_host == data['host'] and \
expected_type == data['type']:
# This monitor does not belong to this record


Loading…
Cancel
Save