From 9e46a8b87be1f7cd50e4f965094df8678b7a6f9c Mon Sep 17 00:00:00 2001 From: BodoBolero Date: Fri, 8 Nov 2024 12:29:02 +0100 Subject: [PATCH] echo new project ID --- .github/workflows/benchmarking.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/benchmarking.yml b/.github/workflows/benchmarking.yml index 74f87e26b4..a1861f9d7c 100644 --- a/.github/workflows/benchmarking.yml +++ b/.github/workflows/benchmarking.yml @@ -101,7 +101,9 @@ jobs: - name: Initialize Neon project and retrieve current backpressure seconds env: NEW_PROJECT_CONNSTR: ${{ steps.create-neon-project-ingest-target.outputs.dsn }} + NEW_PROJECT_ID: ${{ steps.create-neon-project-ingest-target.outputs.project_id }} run: | + echo "Initializing Neon project with id: ${NEW_PROJECT_ID}" export LD_LIBRARY_PATH=${PG_16_LIB_PATH} ${PSQL} "${NEW_PROJECT_CONNSTR}" -c "CREATE EXTENSION neon; CREATE EXTENSION neon_utils;" BACKPRESSURE_TIME_BEFORE_INGEST=$(${PSQL} "${NEW_PROJECT_CONNSTR}" -t -c "select backpressure_throttling_time()/1000000;")