Skip to content

Commit

Permalink
Minor review changeswq
Browse files Browse the repository at this point in the history
  • Loading branch information
ltshb committed Jan 19, 2022
1 parent 7a338ee commit 0b232f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
if WSGI_WORKERS <= 0:
from multiprocessing import cpu_count
WSGI_WORKERS = (cpu_count() * 2) + 1
WSGI_TIMEOUT = int(os.getenv('WSGI_TIMEOUT', '30'))
WSGI_TIMEOUT = int(os.getenv('WSGI_TIMEOUT', '3'))
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ phases:
export GITHUB_BRANCH=${GITHUB_BRANCH#remotes/origin/};
fi
- export GITHUB_COMMIT=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
- export GITHUB_TAG="$(git describe --tags || echo 'no version info')"
- export GITHUB_TAG="$(git describe --tags || echo 'no-version-info')"
- echo "GITHUB_BRANCH=${GITHUB_BRANCH} GITHUB_COMMIT=${GITHUB_COMMIT} GITHUB_TAG=${GITHUB_TAG} DOCKER_IMG_TAG=${DOCKER_IMG_TAG}"
- echo "Creating a clean environment"
- make ci
Expand Down

0 comments on commit 0b232f5

Please sign in to comment.