Lines Matching full:retries
26 def dump_vpd_log(host, force=True, retries=3): argument
34 @param retries: Number of times to try rerunning the command in case of
39 retry_util.RetryException(error.AutoservRunError, retries, host.run,
43 def vpd_get(host, key, partition='RW_VPD', retries=3): argument
50 @param retries: Number of times to try rerunning the command in case of
57 return retry_util.RetryException(error.AutoservRunError, retries,
67 retries=3): argument
79 @param retries: Number of times to try rerunning the command in case of
87 retry_util.RetryException(error.AutoservRunError, retries,
91 dump_vpd_log(host, force=force_dump, retries=retries)
95 retries=3): argument
105 @param retries: Number of times to try rerunning the command in case of
110 if not vpd_get(host, key, partition=partition, retries=retries):
114 retry_util.RetryException(error.AutoservRunError, retries, host.run,
118 dump_vpd_log(host, force=force_dump, retries=retries)