Skip to content

Commit

Permalink
fix(dev): restore default behavior of debugtoolbar (pypi#16447)
Browse files Browse the repository at this point in the history
  • Loading branch information
miketheman authored Aug 9, 2024
1 parent 6eea442 commit 8a44d6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.override.yaml-sample
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ services:

web:
# Similar to environment, you can selectively override other settings
command: ddtrace-run gunicorn --reload -b 0.0.0.0:8000 --access-logfile - --error-logfile - warehouse.wsgi:application
command: ddtrace-run gunicorn --reload --workers 4 -b 0.0.0.0:8000 --access-logfile - --error-logfile - warehouse.wsgi:application
environment:
# Using `<<:` overrides merges with the existing values, instead of overwriting it
<<: *environment-vars
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ services:

web:
image: warehouse:docker-compose
command: gunicorn --reload --reload-extra-file=warehouse/api/openapi.yaml -w 4 -b 0.0.0.0:8000 --access-logfile - --error-logfile - warehouse.wsgi:application
command: gunicorn --reload --reload-extra-file=warehouse/api/openapi.yaml -b 0.0.0.0:8000 --access-logfile - --error-logfile - warehouse.wsgi:application
env_file: dev/environment
pull_policy: never
volumes: *base_volumes
Expand Down

0 comments on commit 8a44d6d

Please sign in to comment.