Skip to content
Snippets Groups Projects
Commit dbc50ab2 authored by Sajauddin Mohammad's avatar Sajauddin Mohammad Committed by Sajauddin
Browse files

Skips a debug log during image build

Added a condition to skip debug message during image build, when the 
base image is dependent on image of other service

Closes-Bug: #1513904. 
  
Change-Id: I68d568981cebf442b34c958e125b0f921b883247
parent f4a96677
No related branches found
No related tags found
No related merge requests found
......@@ -778,7 +778,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']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment