summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-06-25 09:13:20 -0500
committerSteve Sakoman <steve@sakoman.com>2020-07-01 05:24:29 -1000
commita7fc2ae3fd40b7de36f7f9b3da64a610a698b4ed (patch)
tree7573454e6a6126f4739b6d2567905b118d2c7033
parent1a7bddb5471a02a744e7a441a3b4a6da693348b0 (diff)
downloadbitbake-a7fc2ae3fd40b7de36f7f9b3da64a610a698b4ed.tar.gz
siggen: Fix error when hash equivalence has an exception
The code that handled exceptions from the hash equivalence client was raising an exception itself because hashserv.client wasn't imported Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit a76290dfc6f34ff9f6efdb13a6db74b6b4759daf) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--lib/bb/siggen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 4c8d81c5d..94d1762df 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -14,6 +14,7 @@ import simplediff
from bb.checksum import FileChecksumCache
from bb import runqueue
import hashserv
+import hashserv.client
logger = logging.getLogger('BitBake.SigGen')
hashequiv_logger = logging.getLogger('BitBake.SigGen.HashEquiv')