Skip to content

Commit

Permalink
fix(helm): Fix silly line break
Browse files Browse the repository at this point in the history
  • Loading branch information
edamboritz committed Jul 3, 2024
1 parent c81f176 commit dc50640
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions helm-chart/sefaria-project/templates/rollout/web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ spec:
- name: web
image: "{{ .Values.web.containerImage.imageRegistry }}:{{ .Values.web.containerImage.tag }}"
imagePullPolicy: Always
args: [ "python manage.py migrate --verbosity 3 && gunicorn sefaria.wsgi --access-logfile - --error-logfile - --timeout 300 --threads {{ .Values.web.resources.web
.gunicornThreadCount }} --worker-tmp-dir /dev/shm -b 0.0.0.0:80" ]
args: [ "python manage.py migrate --verbosity 3 && gunicorn sefaria.wsgi --access-logfile - --error-logfile - --timeout 300 --threads {{ .Values.web.resources.web.gunicornThreadCount }} --worker-tmp-dir /dev/shm -b 0.0.0.0:80" ]
env:
# WEB_CONCURRENCY is used for determining the number of server workers
- name: WEB_CONCURRENCY
Expand Down

0 comments on commit dc50640

Please sign in to comment.