From 71f07484ea71045f0886515d468e329736d11d93 Mon Sep 17 00:00:00 2001
From: Sam Yaple <sam@yaple.net>
Date: Tue, 25 Aug 2015 07:44:33 +0000
Subject: [PATCH] Fix regression in build-script

The regex patch introduced a regression where the summary was not
working due to not copying the images lists, but rather referencing it

This only happens when you do not use a regex to build, but instead
build all images

Change-Id: Ife0ef2d459248aa73af877313140b5392c05673c
Partially-Implements: blueprint build-script
---
 kolla/cmd/build.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kolla/cmd/build.py b/kolla/cmd/build.py
index 243ec77f74..b907673664 100755
--- a/kolla/cmd/build.py
+++ b/kolla/cmd/build.py
@@ -299,7 +299,7 @@ class KollaWorker(object):
                         images_to_process.append(image)
                         added = True
         else:
-            images_to_process = self.images
+            images_to_process = list(self.images)
 
         self.tiers = list()
         while images_to_process:
-- 
GitLab