Searched refs:retry_on_exceptions (Results 1 – 3 of 3) sorted by relevance
44 def _retry_on_exceptions(retry_on_exceptions: Optional[Sequence[Any]] = None):46 if retry_on_exceptions is None:47 retry_on_exceptions = (Exception,)48 return _retry_if_exception_type(retry_on_exceptions)56 retry_on_exceptions: Optional[Sequence[Any]] = None,63 return Retrying(retry=_retry_on_exceptions(retry_on_exceptions),74 retry_on_exceptions: Optional[Sequence[Any]] = None,89 return Retrying(retry=_retry_on_exceptions(retry_on_exceptions),
321 retry_on_exceptions=(EnvironmentError, IOError), argument361 except retry_on_exceptions as ex:
43 retry_on_exceptions=(EtagConflict, gcp.api.TransportError),