summaryrefslogtreecommitdiffstats
path: root/meta/lib
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 17:52:01 +0100
commitf12e41c1bbff01009018786b9c46e90103a2c728 (patch)
treeff8ea114b30c3e3853242020f519babbee989919 /meta/lib
parentb009e68edefeee9066c2e2474c7648d1981eff00 (diff)
downloadpoky-f12e41c1bbff01009018786b9c46e90103a2c728.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: 519561172c48bc7f7a61a3d02edd418fc0895b7b) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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: