Skip to content

Commit

Permalink
update gunicorn configs (#3082)
Browse files Browse the repository at this point in the history
  • Loading branch information
bolyachevets authored Oct 18, 2024
1 parent 0e00cd4 commit aac9ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions queue_services/account-mailer/gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@


workers = int(os.environ.get('GUNICORN_PROCESSES', '1')) # pylint: disable=invalid-name
timeout = int(os.environ.get('GUNICORN_TIMEOUT', '0')) # pylint: disable=invalid-name
threads = int(os.environ.get('GUNICORN_THREADS', '1')) # pylint: disable=invalid-name

forwarded_allow_ips = '*' # pylint: disable=invalid-name
Expand Down
1 change: 1 addition & 0 deletions queue_services/auth-queue/gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@


workers = int(os.environ.get('GUNICORN_PROCESSES', '1')) # pylint: disable=invalid-name
timeout = int(os.environ.get('GUNICORN_TIMEOUT', '0')) # pylint: disable=invalid-name
threads = int(os.environ.get('GUNICORN_THREADS', '1')) # pylint: disable=invalid-name

forwarded_allow_ips = '*' # pylint: disable=invalid-name
Expand Down

0 comments on commit aac9ed7

Please sign in to comment.