Welcome to mirror list, hosted at ThFree Co, Russian Federation.

background_jobs « bin - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 866f5c39cd6ffcb5956667dd8a9da92ae3f1cca1 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

cd $(dirname $0)/..

if [ -n "$SIDEKIQ_WORKERS" ] ; then
  exec bin/background_jobs_sk_cluster "$@"
else
  exec bin/background_jobs_sk "$@"
fi