diff --git a/kolla/image/build.py b/kolla/image/build.py index 20d26e01b2..0a2103516a 100644 --- a/kolla/image/build.py +++ b/kolla/image/build.py @@ -791,7 +791,9 @@ class KollaWorker(object): installation = dict() # NOTE(jeffrey4l): source is not needed when the type is None if self.conf._get('type', self.conf._get_group(section)) is None: - LOG.debug('No source location found in section %s', section) + if image.parent_name is None: + LOG.debug('No source location found in section %s', + section) else: installation['type'] = self.conf[section]['type'] installation['source'] = self.conf[section]['location']