From 7ba06c7f821429ed7c8d3eabe0e70997d72a1305 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Wed, 21 Oct 2015 21:05:02 -0700 Subject: [PATCH] fix e2e.sh again... --- hack/jenkins/e2e.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/jenkins/e2e.sh b/hack/jenkins/e2e.sh index 19dbeb00fde..f9f8d0b128c 100755 --- a/hack/jenkins/e2e.sh +++ b/hack/jenkins/e2e.sh @@ -1128,14 +1128,14 @@ if [[ "${E2E_UP,,}" == "true" || "${JENKINS_FORCE_GET_TARS:-}" =~ ^[yY]$ ]]; the # # If jenkins was recently restarted and jobs are failing with # - # flock: 9: Bad file descriptor + # flock: 9: Permission denied # # ssh into the jenkins master and run - # $ `sudo chown root:root /var/run/lock/gcloud-components.lock` + # $ `sudo chown jenkins:jenkins /var/run/lock/gcloud-components.lock` # # AGAIN: DO NOT TOUCH THIS CODE unless you are certain you understand # implications and have approval from jlowdermilk@ or brendandburns@ - sudo flock -x -n 9 + flock -x -n 9 gcloud components update -q || true gcloud components update alpha -q || true gcloud components update beta -q || true