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

Implement basic HTTP arguments

This commit is contained in:
Lukas Kämmerling 2020-06-29 11:32:47 +02:00
parent 8e0adcb7b0
commit a8aaf19e40

View file

@ -201,8 +201,8 @@ class AnsibleHcloudLoadBalancerService(Hcloud):
params["http"] = self.__get_service_http()
if not self.module.check_mode:
print(params["http"])
try:
print(params["http"])
self.hcloud_load_balancer.add_service(LoadBalancerService(**params)).wait_until_finished(
max_retries=1000)
except APIException as e: