Skip to content

Commit

Permalink
Fix postgres config
Browse files Browse the repository at this point in the history
  • Loading branch information
hannah-macdonald1 committed Feb 2, 2024
1 parent 70272ce commit ac3851a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions containers/db_cleanup/cleanup.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ const pg = require('knex')({
const pinClient = new Client({
host: process.env.DB_HOST,
port: process.env.DB_PORT,
user: process.env.DB_USERNAME,
user: process.env.DB_USER,
database: process.env.DB_NAME,
password: process.env.DB_PASSWORD,
});

const vhersClient = new Client({
host: process.env.DB_HOST,
port: process.env.DB_PORT,
user: process.env.DB_USERNAME,
user: process.env.DB_USER,
database: process.env.DB_NAME,
password: process.env.DB_PASSWORD,
});
Expand Down

0 comments on commit ac3851a

Please sign in to comment.