mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Removing extra newline from changelog. removing debugging messages from conftest.py.
This commit is contained in:
parent
9c5b2e369a
commit
88769f2058
2 changed files with 0 additions and 5 deletions
|
@ -1,2 +1 @@
|
|||
|
||||
Fixing rabbitmq.list_user_permissions to ensure we are returning a permission list with three elements even when some values are empty.
|
||||
|
|
|
@ -75,21 +75,17 @@ def rabbitmq_container(request, salt_factories, modules):
|
|||
)
|
||||
with container.started():
|
||||
# Sleep
|
||||
log.debug("=== initial sleep")
|
||||
time.sleep(10)
|
||||
|
||||
authenticated = False
|
||||
login_attempts = 6
|
||||
while login_attempts:
|
||||
log.debug("=== login attempt %s ===", login_attempts)
|
||||
login_attempts -= 1
|
||||
ret = container.run("rabbitmqctl status --formatter=json")
|
||||
log.debug("=== ret %s ===", ret)
|
||||
authenticated = ret.exitcode == 0
|
||||
if authenticated:
|
||||
break
|
||||
|
||||
log.debug("=== sleep ===")
|
||||
time.sleep(10)
|
||||
|
||||
if authenticated:
|
||||
|
|
Loading…
Add table
Reference in a new issue