Guest User

Untitled

a guest
Dec 11th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. {
  2. client: 'oracledb',
  3. connection: {
  4. user: DB_USER,
  5. password: DB_PASSWORD,
  6. host: `${DB_HOST}:${DB_PORT}`,
  7. database: DB_NAME
  8. },
  9. debug: true,
  10. fetchAsString: ['number', 'clob'],
  11. acquireConnectionTimeout: 843600000,
  12. pool: {
  13. min: 2,
  14. max: 150,
  15. acquireTimeoutMillis: 100000,
  16. evictionRunIntervalMillis: 120000,
  17. maxWaitingClients: 100,
  18. idleTimeoutMillis: 100000
  19. }
  20. }
Add Comment
Please, Sign In to add comment