Merge pull request #1799 from coreos-inc/remove-unneeded-log

Change log level of an expected log message
This commit is contained in:
josephschorr 2016-08-31 18:29:28 -04:00 committed by GitHub
commit 7c3ef6781d

View file

@ -513,7 +513,9 @@ class EphemeralBuilderManager(BaseManager):
# as it will also remove this mapping.
job = self._component_to_job.pop(build_component, None)
if job is None:
logger.error('Could not find job for the build component on realm %s; it may have expired',
# This will occur once the build finishes, so no need to worry about it. We log in case it
# happens outside of the expected flow.
logger.debug('Could not find job for the build component on realm %s; component is ready',
build_component.builder_realm)
raise Return()