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

Don't deprecate geo bits yet, wait until we have full dynamic impl

This commit is contained in:
Ross McFarland
2018-12-12 11:11:53 -08:00
parent f1d5808ddc
commit f95014f2f4

View File

@@ -322,8 +322,6 @@ class _GeoMixin(_ValuesMixin):
super(_GeoMixin, self).__init__(zone, name, data, *args, **kwargs) super(_GeoMixin, self).__init__(zone, name, data, *args, **kwargs)
try: try:
self.geo = dict(data['geo']) self.geo = dict(data['geo'])
self.log.warn("'geo' support has been deprecated, "
"transition %s to use 'dynamic'", name)
except KeyError: except KeyError:
self.geo = {} self.geo = {}
for code, values in self.geo.items(): for code, values in self.geo.items():