Skip to content

Commit 1343584

Browse files
authored
Fix Vultr timeout and wait values (canonical#1113)
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.
1 parent 7ebf04e commit 1343584

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cloudinit/sources/DataSourceVultr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
BUILTIN_DS_CONFIG = {
1717
'url': 'http://169.254.169.254',
1818
'retries': 30,
19-
'timeout': 2,
20-
'wait': 2,
19+
'timeout': 10,
20+
'wait': 5,
2121
'user-agent': 'Cloud-Init/%s - OS: %s Variant: %s' %
2222
(version.version_string(),
2323
util.system_info()['system'],

0 commit comments

Comments
 (0)