From c521f06de2fb1a66b7dfaf3131d5843250be0a51 Mon Sep 17 00:00:00 2001 From: Viranch Mehta Date: Tue, 21 Sep 2021 01:58:07 -0700 Subject: [PATCH] fix flag name in message --- octodns/provider/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octodns/provider/base.py b/octodns/provider/base.py index 459437d..74c8c2b 100644 --- a/octodns/provider/base.py +++ b/octodns/provider/base.py @@ -70,8 +70,8 @@ class BaseProvider(BaseSource): if not unsupported_pools: continue unsupported_pools = ','.join(unsupported_pools) - msg = f'"up" flag used in pools {unsupported_pools} in ' \ - f'{record.fqdn} is not supported' + msg = f'"status" flag used in pools {unsupported_pools}' \ + f' in {record.fqdn} is not supported' fallback = 'will ignore it and respect the healthcheck' self.supports_warn_or_except(msg, fallback) record = record.copy()