Lines Matching full:retries
25 def dump_vpd_log(host, force=True, retries=3): argument
33 @param retries: Number of times to try rerunning the command in case of
38 retry_util.RetryException(error.AutoservRunError, retries, host.run,
42 def vpd_get(host, key, partition='RW_VPD', retries=3): argument
49 @param retries: Number of times to try rerunning the command in case of
56 return retry_util.RetryException(error.AutoservRunError, retries,
66 retries=3): argument
78 @param retries: Number of times to try rerunning the command in case of
86 retry_util.RetryException(error.AutoservRunError, retries,
90 dump_vpd_log(host, force=force_dump, retries=retries)
94 retries=3): argument
104 @param retries: Number of times to try rerunning the command in case of
109 if not vpd_get(host, key, partition=partition, retries=retries):
113 retry_util.RetryException(error.AutoservRunError, retries, host.run,
117 dump_vpd_log(host, force=force_dump, retries=retries)