mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 19:20:22 -07:00
Ignore empty result of rabbitmqctl list_user_permissions (#35598)
Fix #34863
This commit is contained in:
parent
b2dc7075df
commit
a7221dd289
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class RabbitMqUser(object):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def _get_permissions(self):
|
def _get_permissions(self):
|
||||||
perms_out = self._exec(['list_user_permissions', self.username], True)
|
perms_out = [perm for perm in self._exec(['list_user_permissions', self.username], True) if perm.strip()]
|
||||||
|
|
||||||
perms_list = list()
|
perms_list = list()
|
||||||
for perm in perms_out:
|
for perm in perms_out:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue