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

Better fallback message

This commit is contained in:
Viranch Mehta
2021-09-17 15:42:50 -07:00
parent 201c57298a
commit 1745a5c239

View File

@@ -917,7 +917,8 @@ class AzureProvider(BaseProvider):
# Azure only supports up=None & up=False, not up=True # Azure only supports up=None & up=False, not up=True
msg = f'up=True is not supported for "{name}" pool ' \ msg = f'up=True is not supported for "{name}" pool ' \
f'in {record.fqdn}' f'in {record.fqdn}'
fallback = 'ignoring it' fallback = \
'will ignore the flag and respect healthcheck'
self.supports_warn_or_except(msg, fallback) self.supports_warn_or_except(msg, fallback)
return super()._process_desired_zone(desired) return super()._process_desired_zone(desired)