mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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
|
||||
|
||||
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()
|
||||
for perm in perms_out:
|
||||
|
|
Loading…
Reference in a new issue