Skip to content

Commit

Permalink
Merge pull request #20 from pagopa/fix-perf-test-pipeline-postgres-co…
Browse files Browse the repository at this point in the history
…nn-string

fix: Performance test eventhub connection string
  • Loading branch information
svariant authored Nov 29, 2024
2 parents fa7bcb4 + dcc34f0 commit 74cf85d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .devops/performance-test-pipelines.yml
Original file line number Diff line number Diff line change
@@ -22,12 +22,12 @@ variables:
poolImage: "pagopa-dev-loadtest-linux"
PG_GPD_PASSWORD: "$(DEV_PG_GPD_PASSWORD)"
PG_GPD_USERNAME: "$(DEV_PG_GPD_USER)"
INGESTION_EVENTHUB_CONN_STRING: "${DEV_INGESTION_EVENTHUB_CONN_STRING}"
INGESTION_EVENTHUB_CONN_STRING: "$(DEV_INGESTION_EVENTHUB_CONN_STRING)"
${{ if eq(parameters['ENVIRONMENT'], 'uat') }}:
poolImage: "pagopa-uat-loadtest-linux"
PG_GPD_PASSWORD: "$(UAT_PG_GPD_PASSWORD)"
PG_GPD_USERNAME: "$(UAT_PG_GPD_USER)"
INGESTION_EVENTHUB_CONN_STRING: "${UAT_INGESTION_EVENTHUB_CONN_STRING}"
INGESTION_EVENTHUB_CONN_STRING: "$(UAT_INGESTION_EVENTHUB_CONN_STRING)"

pool:
name: $(poolImage)
@@ -36,7 +36,7 @@ steps:
- script: |
cd ./test-utils
chmod +x ./run_compose.sh
./run_compose.sh "${INGESTION_EVENTHUB_CONN_STRING}" "gpd-ingestion.apd.payment_position,cdc-raw-auto.apd.payment_position"
./run_compose.sh ${INGESTION_EVENTHUB_CONN_STRING} "gpd-ingestion.apd.payment_position,cdc-raw-auto.apd.payment_position"
displayName: Run Redis and javascript consumer
env:
INGESTION_EVENTHUB_CONN_STRING: ${{ variables.INGESTION_EVENTHUB_CONN_STRING }}

0 comments on commit 74cf85d

Please sign in to comment.