diff options
| -rw-r--r-- | meta/classes/sstate.bbclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index a2496dce2b..38dc3bff30 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
| @@ -950,10 +950,11 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True, | |||
| 950 | found.add(tid) | 950 | found.add(tid) |
| 951 | if tid in missed: | 951 | if tid in missed: |
| 952 | missed.remove(tid) | 952 | missed.remove(tid) |
| 953 | except: | 953 | except bb.fetch2.FetchError as e: |
| 954 | missed.add(tid) | 954 | missed.add(tid) |
| 955 | bb.debug(2, "SState: Unsuccessful fetch test for %s" % srcuri) | 955 | bb.debug(2, "SState: Unsuccessful fetch test for %s (%s)" % (srcuri, e)) |
| 956 | pass | 956 | except Exception as e: |
| 957 | bb.error("SState: cannot test %s: %s" % (srcuri, e)) | ||
| 957 | if len(tasklist) >= min_tasks: | 958 | if len(tasklist) >= min_tasks: |
| 958 | bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist) - thread_worker.tasks.qsize()), d) | 959 | bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist) - thread_worker.tasks.qsize()), d) |
| 959 | 960 | ||
