1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

always mark as changed

This commit is contained in:
Lukas Kämmerling 2020-06-29 12:24:08 +02:00
parent e7a7bea108
commit a149e1ee43

View file

@ -298,7 +298,7 @@ class AnsibleHcloudLoadBalancerService(Hcloud):
if not self.module.check_mode:
self.hcloud_load_balancer.update_service(LoadBalancerService(**params)).wait_until_finished(
max_retries=1000)
self._mark_as_changed()
self._mark_as_changed()
except APIException as e:
self.module.fail_json(msg=e.message)
self._get_load_balancer()