1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

comparing StorageConnection.password breaks idempotency (#48933)

This commit is contained in:
bverschueren 2018-11-30 11:24:04 +01:00 committed by John R Barker
parent 68cafbda2b
commit 5cd31578cc

View file

@ -176,7 +176,6 @@ class StorageConnectionModule(BaseModule):
equal(self.param('nfs_timeout'), entity.nfs_timeo) and
equal(self.param('nfs_retrans'), entity.nfs_retrans) and
equal(self.param('mount_options'), entity.mount_options) and
equal(self.param('password'), entity.password) and
equal(self.param('username'), entity.username) and
equal(self.param('port'), entity.port) and
equal(self.param('target'), entity.target) and