diff --git a/zaza/openstack/charm_tests/ceph/tests.py b/zaza/openstack/charm_tests/ceph/tests.py index ca76984..03c2e90 100644 --- a/zaza/openstack/charm_tests/ceph/tests.py +++ b/zaza/openstack/charm_tests/ceph/tests.py @@ -23,7 +23,6 @@ from os import ( ) import requests import tempfile -import time import boto3 import botocore.exceptions import urllib3 @@ -1789,7 +1788,6 @@ class CephMonKeyRotationTests(test_utils.BaseCharmTest): ) zaza_utils.assertActionRanOK(action_obj) zaza_model.wait_for_application_states() - time.sleep(5) # Give it time to finish. new_keys = self._get_all_keys(unit, entity_filter) self.assertNotEqual(old_keys, new_keys) diff = new_keys - old_keys @@ -1820,9 +1818,3 @@ class CephMonKeyRotationTests(test_utils.BaseCharmTest): logging.info('ceph-radosgw units present, but no RGW service') except KeyError: pass - - # try: - # zaza_model.get_application('ceph-osd') - # self._check_key_rotation('osd.0', unit) - # except KeyError: - # pass