Gustavo
Gustavo
@binarynate @nicodp-leap one option is to use AWS Batch with EC2 instances in the background. You must set min vCPU to 0 when configuring "compute environments". That will lunch an...
I am running my tests on github actions but I don't want them to run on draft PR, so I added this to my action `types: [review_requested, ready_for_review]` but it...
Thanks for your answer @colinjfw. I got that package when I ran `yarn install` but there is no `lib` directory inside ``` $ ls node_modules/@deliverybot/deploybot jest.config.js node_modules package.json README.md src...
Now it seems I am missing the secrets but not sure where to place them ``` app: Synced partials to lib/views/partials.js .: /var/www/deliverybot/node_modules/@octokit/webhooks/index.js:11 .: throw new Error('options.secret required') .: ^...
I think I am having a similar issue on puma 4.3.8, I was doing benchmark to compare it with passenger and I got the following results Puma 4.3.8 output ```bash...
I will try testing with both, version `5.3.2` and if does not work I will try going back to version `3.12.6`. It is a bit tricky because I am using...
Hey @nateberkopec, I tried with puma 5.3.2 and the result was pretty similar ```bash $ ./wrk -t12 -c400 -d30s "https://puma_5.3.2_server_url" Running 30s test @ https://puma_5.3.2_server_url 12 threads and 400 connections...
I tried different settings, but all these tests I posted previously were done with ``` threads 8, 32 workers %x(grep -c processor /proc/cpuinfo) # --> 4 ``` The only way...
Hi, any ideas what else I can try?
I solved the issue by changing the upstream configuration on nginx from socket to TCP ```nginx upstream my_app { server 127.0.0.1:3000; # server unix:///var/run/puma/my_app.sock; } ```