Skip to content

Commit

Permalink
try pre-fork grpcio import
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed May 22, 2024
1 parent 12c8e3e commit 1a0f431
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/repro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,17 @@ jobs:
curl http://[::1]:8001/get/2
curl http://[::1]:8001/get/3
killall gunicorn
- run: |
gunicorn -w 2 --preload -b [::1]:8001 repro-3213:app --enable-stdio-inheritance &
sleep 3
curl http://[::1]:8001/get/1
curl http://[::1]:8001/get/2
curl http://[::1]:8001/get/3
killall gunicorn
- run: |
gunicorn --worker-class=gthread -w 2 --preload -b [::1]:8001 repro-3213:app --enable-stdio-inheritance &
sleep 3
curl http://[::1]:8001/get/1
curl http://[::1]:8001/get/2
curl http://[::1]:8001/get/3
killall gunicorn

0 comments on commit 1a0f431

Please sign in to comment.