Skip to content

Commit

Permalink
PMM-13493 fix pgsm pgss
Browse files Browse the repository at this point in the history
  • Loading branch information
yurkovychv committed Nov 11, 2024
1 parent 29f4eaf commit 5579ed6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/qa-integration/pmm_pgsm_integration_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const connection = {
// Service Name: ${PGSQL_PGSM_CONTAINER}_${PGSQL_VERSION}_service
// Docker Container Name: ${PGSQL_PGSM_CONTAINER}_${PGSQL_VERSION}

const version = process.env.PDPGSQL_VERSION ? `${process.env.PDPGSQL_VERSION}` : '16';
const version = process.env.PDPGSQL_VERSION ? `${process.env.PDPGSQL_VERSION}` : '17';
const database = `pgsm${Math.floor(Math.random() * 99) + 1}`;
let pgsm_service_name;
let pgsm_service_name_socket;
Expand Down
2 changes: 1 addition & 1 deletion tests/qa-integration/pmm_pgss_integration_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const connection = {
// Service Name: ${PGSQL_PGSS_CONTAINER}_${PGSQL_VERSION}_service
// Docker Container Name: ${PGSQL_PGSS_CONTAINER}_${PGSQL_VERSION}

const version = process.env.PGSQL_VERSION ? `${process.env.PGSQL_VERSION}` : '16';
const version = process.env.PGSQL_VERSION ? `${process.env.PGSQL_VERSION}` : '17';
const container = process.env.PGSQL_PGSS_CONTAINER ? `${process.env.PGSQL_PGSS_CONTAINER}` : 'pgsql_pgss_pmm';
const database = `pgss${Math.floor(Math.random() * 99) + 1}`;
let pgss_service_name;
Expand Down

0 comments on commit 5579ed6

Please sign in to comment.