| Message ID | 69e22a5f95d650ed83e6064d4e99b8dc067a6659.1781131922.git.yoann.congal@smile.fr |
|---|---|
| State | New |
| Headers | show |
| Series | [wrynose,2.18,1/6] fetch2: reraise IOError during download | expand |
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index 0e4f491ce..d913d7511 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -1969,6 +1969,7 @@ class Fetch(object): if e.errno in [errno.ESTALE]: logger.error("Stale Error Observed %s." % u) raise ChecksumError("Stale Error Detected") + raise except BBFetchException as e: if isinstance(e, NoChecksumError):