From f9119664ef59fcf0b43943429c5707c49e37be05 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Fri, 23 Sep 2011 12:16:51 -0400 Subject: DataSourceOVF: specify timeout=None in read_seeded call If the user told us to read from a seed, we should not timeout quickly --- cloudinit/DataSourceOVF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cloudinit') diff --git a/cloudinit/DataSourceOVF.py b/cloudinit/DataSourceOVF.py index 3dad4b1e..a9089d70 100644 --- a/cloudinit/DataSourceOVF.py +++ b/cloudinit/DataSourceOVF.py @@ -90,7 +90,7 @@ class DataSourceOVF(DataSource.DataSource): (seedfrom, self.__class__)) return False - (md_seed,ud) = util.read_seeded(seedfrom) + (md_seed,ud) = util.read_seeded(seedfrom, timeout=None) log.debug("using seeded cache data from %s" % seedfrom) md = util.mergedict(md,md_seed) -- cgit v1.2.3