mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
acd9347930
The Node buildpack now exports a leading zero in its numbers. This lets us detect that it (or another buildpack) set the value, and overwrite it accordingly. Fixes the issue where adding the node buildpack to a Python app would cause only one gunicorn worker to be spawned for a 1X dyno, and not two. We also need to again produce leading zeroes in the value, so that e.g. the PHP buildpack can do the same on boot.
39 lines
849 B
Bash
Executable File
39 lines
849 B
Bash
Executable File
if [[ "${WEB_CONCURRENCY:-}" == 0* ]]; then
|
|
# another buildpack set a default value, with leading zero
|
|
unset WEB_CONCURRENCY
|
|
fi
|
|
|
|
case $(ulimit -u) in
|
|
|
|
# Automatic configuration for Gunicorn's Workers setting.
|
|
# Leading zero padding so a subsequent buildpack can figure out that we set a value, and not the user
|
|
|
|
# Standard-1X (+Free, +Hobby) Dyno
|
|
256)
|
|
export DYNO_RAM=512
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-02}
|
|
;;
|
|
|
|
# Standard-2X Dyno
|
|
512)
|
|
export DYNO_RAM=1024
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-04}
|
|
;;
|
|
|
|
# Performance-M Dyno
|
|
16384)
|
|
export DYNO_RAM=2560
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-08}
|
|
;;
|
|
|
|
# Performance-L Dyno
|
|
32768)
|
|
export DYNO_RAM=6656
|
|
export WEB_CONCURRENCY=${WEB_CONCURRENCY:-011}
|
|
;;
|
|
|
|
esac
|
|
|
|
# Automatic configuration for Gunicorn's ForwardedAllowIPS setting.
|
|
export FORWARDED_ALLOW_IPS='*'
|