Browse Source

Fix: support both DATABASE_URL and DB_PASS (#26295)

lets-bump-hometown-to-mastodon-4.2
Emelia Smith 3 years ago committed by GitHub
parent
commit
6375e390af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      streaming/index.js

5
streaming/index.js

@ -110,6 +110,11 @@ const pgConfigFromEnv = (env) => {
if (env.DATABASE_URL) {
baseConfig = dbUrlToConfig(env.DATABASE_URL);
// Support overriding the database password in the connection URL
if (!baseConfig.password && env.DB_PASS) {
baseConfig.password = env.DB_PASS;
}
} else {
baseConfig = pgConfigs[environment];

Loading…
Cancel
Save