Skip to content

Commit

Permalink
build: Expose access logs and update number of workers (#468)
Browse files Browse the repository at this point in the history
* build: Expose access logs

This option writes access logs to stdout.

* build: Update number of workers

This value has set to 2*(#cpus)+1
  • Loading branch information
kesara authored Sep 26, 2024
1 parent 6e871cf commit dd0f06e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k8s/bib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
python manage.py migrate &&
python manage.py check --deploy &&
python manage.py clear_cache &&
hypercorn -b '0.0.0.0:8000' -w 1 bibxml.asgi:application
hypercorn -b '0.0.0.0:8000' -w 9 --access-logfile - bibxml.asgi:application
- name: celery
image: "ghcr.io/ietf-tools/bibxml-service:$APP_IMAGE_TAG"
imagePullPolicy: Always
Expand Down

0 comments on commit dd0f06e

Please sign in to comment.