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:
parent
4ce642a30b
commit
b8e9f2d1fa
1 changed files with 3 additions and 2 deletions
|
@ -293,8 +293,9 @@ class DockerfileBuildContext(object):
|
||||||
status_str = str(fully_unwrapped.encode('utf-8'))
|
status_str = str(fully_unwrapped.encode('utf-8'))
|
||||||
|
|
||||||
# Check for system errors when building.
|
# Check for system errors when building.
|
||||||
if matches_system_error(status_str):
|
# DISABLED: LXC is super flaky, but this is causing build nodes to spasm.
|
||||||
raise WorkerUnhealthyException(status_str)
|
#if matches_system_error(status_str):
|
||||||
|
# raise WorkerUnhealthyException(status_str)
|
||||||
|
|
||||||
logger.debug('Status: %s', status_str)
|
logger.debug('Status: %s', status_str)
|
||||||
step_increment = re.search(r'Step ([0-9]+) :', status_str)
|
step_increment = re.search(r'Step ([0-9]+) :', status_str)
|
||||||
|
|
Reference in a new issue