Skip to content

Commit

Permalink
Revert "fix: using default password for PM mode"
Browse files Browse the repository at this point in the history
This reverts commit 67e94c3.
  • Loading branch information
helio-frota committed May 3, 2024
1 parent cf5fb02 commit 28c19b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl Default for Database {
const DEFAULT_PORT: u16 = 5432;
Database {
username: env::var("DB_USER").unwrap_or("postgres".into()),
password: env::var("DB_PASSWORD").unwrap_or("postgres".into()),
password: env::var("DB_PASSWORD").unwrap_or("trustify".into()),
name: env::var("DB_NAME").unwrap_or("trustify".into()),
host: env::var("DB_HOST").unwrap_or("localhost".into()),
port: match env::var("DB_PORT") {
Expand Down

0 comments on commit 28c19b5

Please sign in to comment.