Skip to content

Commit

Permalink
PPR API verify new CI script updates.
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Lovett <[email protected]>
  • Loading branch information
doug-lovett committed Dec 12, 2024
1 parent acec526 commit 537d06f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 98 deletions.
8 changes: 4 additions & 4 deletions ppr-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
29 changes: 0 additions & 29 deletions ppr-api/src/ppr_api/utils/run_version.py

This file was deleted.

65 changes: 0 additions & 65 deletions ppr-api/test_data/run_one_file.py

This file was deleted.

0 comments on commit 537d06f

Please sign in to comment.