Merge pull request #204 from andsens/rabbitmq-clear-user-pw

Clear rabbitmq_user pw when none is specified
This commit is contained in:
Brian Coca 2015-01-19 11:47:39 -05:00
commit edef1c8484

View file

@ -162,7 +162,11 @@ class RabbitMqUser(object):
return dict()
def add(self):
self._exec(['add_user', self.username, self.password])
if self.password is not None:
self._exec(['add_user', self.username, self.password])
else
self._exec(['add_user', self.username, ''])
self._exec(['clear_password', self.username])
def delete(self):
self._exec(['delete_user', self.username])