Skip to content

Commit

Permalink
added KESHA_UVICORN_WORKERS in uvicorn and modified CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrS12 authored and lowitea committed Jan 17, 2022
1 parent f960ed4 commit 9bf410e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ We follow [Semantic Versions](https://semver.org/).
- Add status saving to the log [#75](https://github.com/NUTtech/Kesha/issues/75)
- Add proxy requests with a two-way log record [#9](https://github.com/NUTtech/Kesha/issues/9)

BACKWARD COMPATIBILITY BREAK:
- Renamed LogEntry model fields [#9](https://github.com/NUTtech/Kesha/issues/9):
- body -> request_body
- date -> request_date
- headers -> request_headers

### Minor changes
- Add type annotations [#4](https://github.com/NUTtech/Kesha/issues/4)
- Change logo [#60](https://github.com/NUTtech/Kesha/issues/60)
Expand Down
2 changes: 1 addition & 1 deletion deploy/app/start-django-uvicorn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

wait-for-it "${KESHA_DB_HOST:-kesha-database}":5432 -s -t 180 \
&& python /app/src/manage.py migrate --noinput \
&& uvicorn kesha.asgi:application --host '0.0.0.0' --port 8042
&& uvicorn kesha.asgi:application --workers ${KESHA_UVICORN_WORKERS:-4} --host '0.0.0.0' --port 8042

0 comments on commit 9bf410e

Please sign in to comment.