From b8e9f2d1faf03ad18ca39c488b1ed00db69868ac Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 25 Nov 2014 04:18:50 -0500 Subject: [PATCH] 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. --- workers/dockerfilebuild.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/workers/dockerfilebuild.py b/workers/dockerfilebuild.py index 764a69771..1991bc9fc 100644 --- a/workers/dockerfilebuild.py +++ b/workers/dockerfilebuild.py @@ -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)