Skip to content

Commit

Permalink
Release 2.33 (#92)
Browse files Browse the repository at this point in the history
[2023-01-29 15:48] Fix to Arome handling

FIXED:
- The AROME handling didn't properly work out-of-the-box from the Docker image because the adjustments for timeout and worker class hadn't been properly set for Gunicorn. This has been fixed.
  • Loading branch information
rflinnenbank authored Jan 29, 2023
1 parent 265d4b4 commit 2d1a885
Show file tree
Hide file tree
Showing 5 changed files with 1,235 additions and 1,224 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ WORKDIR /

EXPOSE 8000

CMD ["gunicorn", "-k", "uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:8000", "weather_provider_api.main:app" ]
CMD ["gunicorn", "-k", "gunicorn.workers.ggevent.GeventWorker", "-b", "0.0.0.0:8000", "weather_provider_api.main:app", "--timeout", "180"]
Loading

0 comments on commit 2d1a885

Please sign in to comment.