summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-09-16 12:49:44 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-18 11:52:02 +0100
commit26a432aed48bfb3a4f84778de27b2acb3a76eb49 (patch)
tree3e9a7c03851d900ccad20e3f212192a212f908b6
parentf025010ee02130bd7f6bd6073a9a0b111aaa9936 (diff)
downloadpoky-26a432aed48bfb3a4f84778de27b2acb3a76eb49.tar.gz
sstatesig: Update server URI
The server no longer uses a "http://" URI, since it has been updated to use a different protocol. (From OE-Core rev: e41b97b46a7bedb8bd6827396856c75642250b13) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oe/sstatesig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 0c7a6f5ed8..b1ef5c039b 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -264,7 +264,7 @@ class SignatureGeneratorOEEquivHash(bb.siggen.SignatureGeneratorUniHashMixIn, Si
264 super().init_rundepcheck(data) 264 super().init_rundepcheck(data)
265 autostart = data.getVar('BB_HASHSERVE') 265 autostart = data.getVar('BB_HASHSERVE')
266 if autostart: 266 if autostart:
267 self.server = "http://" + autostart 267 self.server = autostart
268 else: 268 else:
269 self.server = data.getVar('SSTATE_HASHEQUIV_SERVER') 269 self.server = data.getVar('SSTATE_HASHEQUIV_SERVER')
270 if not self.server: 270 if not self.server: