From f921ad47648e60d3f2bc468169fa717688ecfa55 Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Fri, 14 Mar 2014 12:43:04 +0000 Subject: Make InitiatorBuildCommand construct BuildCommand The constructor for BuildCommand sets up the caches, we want the caches to be set up for distbuild too so that we can deploy a system (system artifact will be fetched from the artifact cache) --- morphlib/plugins/distbuild_plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/morphlib/plugins/distbuild_plugin.py b/morphlib/plugins/distbuild_plugin.py index 364e3eb5..7f6b3435 100644 --- a/morphlib/plugins/distbuild_plugin.py +++ b/morphlib/plugins/distbuild_plugin.py @@ -250,6 +250,7 @@ class InitiatorBuildCommand(morphlib.buildcommand.BuildCommand): self.addr = addr self.port = port self.app.settings['push-build-branches'] = True + super(InitiatorBuildCommand, self).__init__(app) def build(self, args): '''Initiate a distributed build on a controller''' -- cgit v1.2.1