From 1745a5c239c540ce3606dbd9638e4838a86785a8 Mon Sep 17 00:00:00 2001 From: Viranch Mehta Date: Fri, 17 Sep 2021 15:42:50 -0700 Subject: [PATCH] Better fallback message --- octodns/provider/azuredns.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/octodns/provider/azuredns.py b/octodns/provider/azuredns.py index 8cc716e..d918a3a 100644 --- a/octodns/provider/azuredns.py +++ b/octodns/provider/azuredns.py @@ -917,7 +917,8 @@ class AzureProvider(BaseProvider): # Azure only supports up=None & up=False, not up=True msg = f'up=True is not supported for "{name}" pool ' \ f'in {record.fqdn}' - fallback = 'ignoring it' + fallback = \ + 'will ignore the flag and respect healthcheck' self.supports_warn_or_except(msg, fallback) return super()._process_desired_zone(desired)