Home | History | Annotate | Download | only in dynamic_suite

Lines Matching refs:retry_max

59             {job_id: {'state':RetryHandler.States, 'retry_max':int}}
78 - retry_max:
112 retry_max=test.job_retries)
117 def _add_job(self, new_job_id, retry_max):
121 @param retry_max: The maximum of times that we could retry
132 'retry_max': retry_max}
160 retry_max=old_record['retry_max'] - 1)
193 - retry_max == 0 --> the last retry job, no more retry
194 - retry_max > 0
226 e) The job has not reached its retry max, i.e. retry_max > 0
240 and self._retry_map[result.id]['retry_max'] > 0
254 c) The job has not reached its retry max, i.e. retry_max > 0
271 if self._retry_map[job_id]['retry_max'] <= 0:
298 return self._retry_map[job_id]['retry_max']