antlir/common.py [262:272]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        except Exception as e:
            if is_exception_retryable and not is_exception_retryable(e):
                raise
            log.log(
                logging.ERROR if log_exception else logging.DEBUG,
                # pyre-fixme[6]: Expected `Sized` for 1st param but got
                #  `Iterable[float]`.
                f"\n\n[Retry {i + 1} of {len(delays)}] {what} -- waiting "
                f"{delay} seconds.\n\n",
                exc_info=log_exception,
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



antlir/common.py [326:336]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        except Exception as e:
            if is_exception_retryable and not is_exception_retryable(e):
                raise
            log.log(
                logging.ERROR if log_exception else logging.DEBUG,
                # pyre-fixme[6]: Expected `Sized` for 1st param but got
                #  `Iterable[float]`.
                f"\n\n[Retry {i + 1} of {len(delays)}] {what} -- waiting "
                f"{delay} seconds.\n\n",
                exc_info=log_exception,
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



