Skip to content

Commit

Permalink
Fix Vultr timeout and wait values (#1113)
Browse files Browse the repository at this point in the history
Some Vultr Datacenters can experience latency in the connection due
to the location of one of the dependant api's. The timouts need to be
adjusted so this isn't a failure in the future.
  • Loading branch information
eb3095 committed Nov 18, 2021
1 parent 7ebf04e commit 1343584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudinit/sources/DataSourceVultr.py
Expand Up @@ -16,8 +16,8 @@
BUILTIN_DS_CONFIG = {
'url': 'http://169.254.169.254',
'retries': 30,
'timeout': 2,
'wait': 2,
'timeout': 10,
'wait': 5,
'user-agent': 'Cloud-Init/%s - OS: %s Variant: %s' %
(version.version_string(),
util.system_info()['system'],
Expand Down

0 comments on commit 1343584

Please sign in to comment.