Fork of github.com/did-method-plc/did-method-plc

fix env var

dholms a68a29b2 32d8a854

Changed files
+1 -1
packages
server
service
+1 -1
packages/server/service/index.js
···
}
const dbPoolSize = parseMaybeInt(process.env.DB_POOL_SIZE)
const dbPoolMaxUses = parseMaybeInt(process.env.DB_POOL_MAX_USES)
-
const dbPoolIdleTimeoutMs = parseMaybeInt(process.env.PDS_DB_POOL_IDLE_TIMEOUT_MS)
+
const dbPoolIdleTimeoutMs = parseMaybeInt(process.env.DB_POOL_IDLE_TIMEOUT_MS)
// Use lower-credentialed user to run the app
const db = Database.postgres({
url: pgUrl(dbCreds),