Disable the lxc stability check. LXC is so broken that this was causing the build fleet to thrash when it encountered real issues with LXC/user namespacing.

This commit is contained in:
Joseph Schorr 2014-11-25 04:18:50 -05:00
parent 4ce642a30b
commit b8e9f2d1fa

View file

@ -293,8 +293,9 @@ class DockerfileBuildContext(object):
status_str = str(fully_unwrapped.encode('utf-8'))
# Check for system errors when building.
if matches_system_error(status_str):
raise WorkerUnhealthyException(status_str)
# DISABLED: LXC is super flaky, but this is causing build nodes to spasm.
#if matches_system_error(status_str):
# raise WorkerUnhealthyException(status_str)
logger.debug('Status: %s', status_str)
step_increment = re.search(r'Step ([0-9]+) :', status_str)