summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-04-07 22:13:28 +0000
committerGerrit Code Review <review@openstack.org>2020-04-07 22:13:28 +0000
commit67d2e0a961180dd4a5982787dd7d929f718dd497 (patch)
tree2a93ceb2ad54e50c17b421b3260887c73d322ce3
parentde817ad897b3f864cd86a1b3013c34dc009ec148 (diff)
parent4917019409ca6a0bd0c4f90c8df3c0dc534d5d03 (diff)
downloadzuul-67d2e0a961180dd4a5982787dd7d929f718dd497.tar.gz
Merge "Annotate dynamic layout creation"
-rw-r--r--zuul/configloader.py7
-rw-r--r--zuul/manager/__init__.py27
2 files changed, 20 insertions, 14 deletions
diff --git a/zuul/configloader.py b/zuul/configloader.py
index 4eb64a121..629de58d5 100644
--- a/zuul/configloader.py
+++ b/zuul/configloader.py
@@ -31,6 +31,7 @@ import zuul.manager.independent
import zuul.manager.supercedent
from zuul.lib import encryption
from zuul.lib.keystorage import KeyStorage
+from zuul.lib.logutil import get_annotated_logger
from zuul.lib.re2util import filter_allowed_disallowed
@@ -2319,7 +2320,9 @@ class ConfigLoader(object):
def createDynamicLayout(self, tenant, files, ansible_manager,
include_config_projects=False,
- scheduler=None, connections=None):
+ scheduler=None, connections=None,
+ zuul_event_id=None):
+ log = get_annotated_logger(self.log, zuul_event_id)
loading_errors = model.LoadingErrors()
if include_config_projects:
config = model.ParsedConfig()
@@ -2337,7 +2340,7 @@ class ConfigLoader(object):
layout = model.Layout(tenant)
layout.loading_errors = loading_errors
- self.log.debug("Created layout id %s", layout.uuid)
+ log.debug("Created layout id %s", layout.uuid)
if not include_config_projects:
# NOTE: the actual pipeline objects (complete with queues
# and enqueued items) are copied by reference here. This
diff --git a/zuul/manager/__init__.py b/zuul/manager/__init__.py
index 836b7bb50..bbc439711 100644
--- a/zuul/manager/__init__.py
+++ b/zuul/manager/__init__.py
@@ -520,13 +520,14 @@ class PipelineManager(object):
return relevant_errors
def _loadDynamicLayout(self, item):
+ log = get_annotated_logger(self.log, item.event)
# Load layout
# Late import to break an import loop
import zuul.configloader
loader = zuul.configloader.ConfigLoader(
self.sched.connections, self.sched, None, None)
- self.log.debug("Loading dynamic layout")
+ log.debug("Loading dynamic layout")
(trusted_updates, untrusted_updates) = item.includesConfigUpdates()
build_set = item.current_build_set
@@ -540,23 +541,25 @@ class PipelineManager(object):
# catch syntax errors in config repos even though we won't
# actually run with that config.
if trusted_updates:
- self.log.debug("Loading dynamic layout (phase 1)")
+ log.debug("Loading dynamic layout (phase 1)")
trusted_layout = loader.createDynamicLayout(
item.pipeline.tenant,
build_set.files,
self.sched.ansible_manager,
- include_config_projects=True)
+ include_config_projects=True,
+ zuul_event_id=None)
trusted_errors = len(trusted_layout.loading_errors) > 0
# Then create the config a second time but without changes
# to config repos so that we actually use this config.
if untrusted_updates:
- self.log.debug("Loading dynamic layout (phase 2)")
+ log.debug("Loading dynamic layout (phase 2)")
untrusted_layout = loader.createDynamicLayout(
item.pipeline.tenant,
build_set.files,
self.sched.ansible_manager,
- include_config_projects=False)
+ include_config_projects=False,
+ zuul_event_id=None)
untrusted_errors = len(untrusted_layout.loading_errors) > 0
# Configuration state handling switchboard. Intentionally verbose
@@ -567,12 +570,12 @@ class PipelineManager(object):
# No errors found at all use dynamic untrusted layout
if (trusted_layout and not trusted_errors and
untrusted_layout and not untrusted_errors):
- self.log.debug("Loading dynamic layout complete")
+ log.debug("Loading dynamic layout complete")
return untrusted_layout
# No errors in untrusted only layout update
elif (not trusted_layout and
untrusted_layout and not untrusted_errors):
- self.log.debug("Loading dynamic layout complete")
+ log.debug("Loading dynamic layout complete")
return untrusted_layout
# No errors in trusted only layout update
elif (not untrusted_layout and
@@ -580,12 +583,12 @@ class PipelineManager(object):
# We're a change to a config repo (with no untrusted
# config items ahead), so just use the current pipeline
# layout.
- self.log.debug("Loading dynamic layout complete")
+ log.debug("Loading dynamic layout complete")
return item.queue.pipeline.tenant.layout
# Untrusted layout only works with trusted updates
elif (trusted_layout and not trusted_errors and
untrusted_layout and untrusted_errors):
- self.log.info("Configuration syntax error in dynamic layout")
+ log.info("Configuration syntax error in dynamic layout")
# The config is good if we include config-projects,
# but is currently invalid if we omit them. Instead
# of returning the whole error message, just leave a
@@ -610,7 +613,7 @@ class PipelineManager(object):
if relevant_errors:
item.setConfigErrors(relevant_errors)
return None
- self.log.info(
+ log.info(
"Configuration syntax error not related to "
"change context. Error won't be reported.")
return untrusted_layout
@@ -624,7 +627,7 @@ class PipelineManager(object):
if relevant_errors:
item.setConfigErrors(relevant_errors)
return None
- self.log.info(
+ log.info(
"Configuration syntax error not related to "
"change context. Error won't be reported.")
# We're a change to a config repo with errors not relevant
@@ -635,7 +638,7 @@ class PipelineManager(object):
"not accounted for.")
except Exception:
- self.log.exception("Error in dynamic layout")
+ log.exception("Error in dynamic layout")
item.setConfigError("Unknown configuration error")
return None