vultr: Fix retry max delay param ignored (#67437) (#67513)

* vultr: Fix retry max delay param not taken

* add changelog

(cherry picked from commit bcd145c111)
pull/67986/head
René Moser 5 years ago committed by GitHub
parent f8aaa7dcd2
commit ee9c5df0f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- vultr - Fixed the issue retry max delay param was ignored.

@ -61,7 +61,7 @@ class Vultr:
'api_key': self.module.params.get('api_key') or config.get('key'),
'api_timeout': self.module.params.get('api_timeout') or int(config.get('timeout') or 60),
'api_retries': self.module.params.get('api_retries') or int(config.get('retries') or 5),
'api_retry_max_delay': self.module.params.get('api_retries') or int(config.get('retry_max_delay') or 12),
'api_retry_max_delay': self.module.params.get('api_retry_max_delay') or int(config.get('retry_max_delay') or 12),
'api_endpoint': self.module.params.get('api_endpoint') or config.get('endpoint') or VULTR_API_ENDPOINT,
}
except ValueError as e:

Loading…
Cancel
Save