Skip to content

Commit

Permalink
MHR API verify new CI script.
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Lovett <doug@diamante.ca>
  • Loading branch information
doug-lovett committed Dec 11, 2024
1 parent c512eb1 commit c1deaad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mhr-api/gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

import os

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

forwarded_allow_ips = '*' # pylint: disable=invalid-name
secure_scheme_headers = {'X-Forwarded-Proto': 'https'} # pylint: disable=invalid-name
forwarded_allow_ips = "*" # pylint: disable=invalid-name
secure_scheme_headers = {"X-Forwarded-Proto": "https"} # pylint: disable=invalid-name

0 comments on commit c1deaad

Please sign in to comment.