|
66 | 66 | DURATION_SEC: ${{ github.event.inputs.duration_sec || '30' }} |
67 | 67 | REQUEST_TIMEOUT: ${{ github.event.inputs.request_timeout || '60s' }} |
68 | 68 | CONNECTIONS: ${{ github.event.inputs.connections || '10' }} |
69 | | - MAX_CONNECTIONS: ${{ github.event.inputs.max_connections || github.event.inputs.connections || '10' }} |
| 69 | + MAX_CONNECTIONS: ${{ github.event.inputs.max_connections }} |
70 | 70 | WEB_CONCURRENCY: ${{ github.event.inputs.web_concurrency || '4' }} |
71 | 71 | RAILS_MAX_THREADS: ${{ github.event.inputs.rails_max_threads || '3' }} |
72 | | - RAILS_MIN_THREADS: ${{ github.event.inputs.rails_min_threads || github.event.inputs.rails_max_threads || '3' }} |
| 72 | + RAILS_MIN_THREADS: ${{ github.event.inputs.rails_min_threads }} |
73 | 73 | TOOLS: ${{ github.event.inputs.tools || 'fortio,vegeta,k6' }} |
74 | 74 |
|
75 | 75 | jobs: |
@@ -271,19 +271,6 @@ jobs: |
271 | 271 | run: | |
272 | 272 | set -e # Exit on any error |
273 | 273 | echo "🏃 Running benchmark suite..." |
274 | | - echo "Script: spec/performance/bench.sh" |
275 | | - echo "" |
276 | | - echo "Benchmark parameters:" |
277 | | - echo " - RATE: ${RATE}" |
278 | | - echo " - DURATION_SEC: ${DURATION_SEC}" |
279 | | - echo " - REQUEST_TIMEOUT: ${REQUEST_TIMEOUT}" |
280 | | - echo " - CONNECTIONS: ${CONNECTIONS}" |
281 | | - echo " - MAX_CONNECTIONS: ${MAX_CONNECTIONS}" |
282 | | - echo " - WEB_CONCURRENCY: ${WEB_CONCURRENCY}" |
283 | | - echo " - RAILS_MAX_THREADS: ${RAILS_MAX_THREADS}" |
284 | | - echo " - RAILS_MIN_THREADS: ${RAILS_MIN_THREADS}" |
285 | | - echo " - TOOLS: ${TOOLS}" |
286 | | - echo "" |
287 | 274 |
|
288 | 275 | if ! spec/performance/bench.sh; then |
289 | 276 | echo "❌ ERROR: Benchmark execution failed" |
|
0 commit comments