Browse Source

Merge pull request #7247 in DEC/decision-webui-dcm from release/11.0 to bugfix/11.0

* commit 'ed5f9bbfc13df18424f2cd94dc65d248e121dde8':
  REPORT-92280 fix:timeBetweenEvictionRunsMillis默认值调整
bugfix/11.0
superman 2 years ago
parent
commit
40744098e7
  1. 2
      src/modules/constants/constant.ts

2
src/modules/constants/constant.ts

@ -831,7 +831,7 @@ export const DEFAULT_JDBC_POOL = {
testOnBorrow: true, testOnBorrow: true,
testOnReturn: false, testOnReturn: false,
testWhileIdle: false, testWhileIdle: false,
timeBetweenEvictionRunsMillis: -1, timeBetweenEvictionRunsMillis: 60000,
numTestsPerEvictionRun: 3, numTestsPerEvictionRun: 3,
minEvictableIdleTimeMillis: 1800, minEvictableIdleTimeMillis: 1800,
}; };

Loading…
Cancel
Save