summaryrefslogtreecommitdiff
path: root/lib/gitlab
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2018-10-05 10:24:33 +1300
committerThong Kuah <tkuah@gitlab.com>2018-10-05 11:45:11 +1300
commitcab875eeb7ec6babbab8e5e36c0a0ff4db77f73c (patch)
tree013728b602e76098cc5522f3f81df7173765f741 /lib/gitlab
parent2062560ef9480d6fa07a95d9ef1a7f6fab5317f5 (diff)
downloadgitlab-ce-cab875eeb7ec6babbab8e5e36c0a0ff4db77f73c.tar.gz
Redirect IO streams to prevent hanging
https://en.wikipedia.org/wiki/Nohup#Overcoming_hanging https://gitlab.com/gitlab-org/gitlab-runner/issues/2880
Diffstat (limited to 'lib/gitlab')
-rw-r--r--lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml b/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
index 7ab814a0ed8..ed4ec7e6385 100644
--- a/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml
@@ -798,7 +798,7 @@ rollout 100%:
echo "Checking Tiller..."
export HELM_HOST=":44134"
- tiller -listen ${HELM_HOST} -alsologtostderr &
+ tiller -listen ${HELM_HOST} -alsologtostderr > /dev/null 2>&1 &
echo "Tiller is listening on ${HELM_HOST}"
if ! helm version --debug; then