Skip to content

Commit

Permalink
Disable changing default_ttl test due to designate bug
Browse files Browse the repository at this point in the history
In designate bobcat the designate team re-organised the sql-alchemy code
and this has resulted in the bug [1] that means that the default values
for various zone creations are no longer used from the
/etc/designate/designate.conf file.  i.e. the defaults are fixed.

Related-Bug: LP#2042944
  • Loading branch information
ajkavanagh committed Nov 7, 2023
1 parent 4bffe6c commit a365823
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions zaza/openstack/charm_tests/designate/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ def wait():

def test_300_default_soa_config_options(self):
"""Configure default SOA options."""
current_release = openstack_utils.get_os_release()
jammy_antelope = openstack_utils.get_os_release('jammy_antelope')
if current_release > jammy_antelope:
self.skipTest('changing default ttl is currently broken since '
'jammy_bobcat due to LP#2042944')

test_domain = "test_300_example.com."
DEFAULT_TTL = 60
alternate_config = {'default-soa-minimum': 600,
Expand Down

0 comments on commit a365823

Please sign in to comment.