← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~cjwatson/launchpad/snap-tools-fingerprint-2 into lp:launchpad

 

Colin Watson has proposed merging lp:~cjwatson/launchpad/snap-tools-fingerprint-2 into lp:launchpad.

Commit message:
Actually use config.snappy.tools_fingerprint for snap builds.

Requested reviews:
  Colin Watson (cjwatson)
Related bugs:
  Bug #1626739 in Launchpad itself: "Snapcraft build failing in Yakkety for unauthenticated stage-packages"
  https://bugs.launchpad.net/launchpad/+bug/1626739

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/snap-tools-fingerprint-2/+merge/325648
-- 
Your team Launchpad code reviewers is subscribed to branch lp:launchpad.
=== modified file 'lib/lp/snappy/model/snapbuildbehaviour.py'
--- lib/lp/snappy/model/snapbuildbehaviour.py	2017-06-13 17:08:16 +0000
+++ lib/lp/snappy/model/snapbuildbehaviour.py	2017-06-14 13:34:54 +0000
@@ -102,7 +102,9 @@
         args["archives"], args["trusted_keys"] = (
             yield get_sources_list_for_building(
                 build, build.distro_arch_series, None,
-                tools_source=config.snappy.tools_source, logger=logger))
+                tools_source=config.snappy.tools_source,
+                tools_fingerprint=config.snappy.tools_fingerprint,
+                logger=logger))
         args["archive_private"] = build.archive.private
         if build.snap.branch is not None:
             args["branch"] = build.snap.branch.bzr_identity


References