Backport/2.7/48933 (#49400)

* comparing StorageConnection.password breaks idempotency (#48933)

(cherry picked from commit 5cd31578cc)

* changelog
This commit is contained in:
John R Barker 2018-12-04 14:59:10 +00:00 committed by Toshio Kuratomi
parent 12e088ff93
commit 69e1d0f425
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- ovirt_storage_connection - comparing passwords breaks idempotency in update_check (https://github.com/ansible/ansible/issues/48933)

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