refactor: 测速默认频率调到120秒

pull/192/head
xiaojunnuo 3 years ago
parent 7b64abdb11
commit 94800d780d

@ -240,7 +240,7 @@ module.exports = {
}, },
speedTest: { speedTest: {
enabled: true, enabled: true,
interval: 300000, interval: 120000,
hostnameList: ['github.com'], hostnameList: ['github.com'],
dnsProviders: ['usa', 'quad9', 'rubyfish'] dnsProviders: ['usa', 'quad9', 'rubyfish']
} }

@ -81,7 +81,7 @@ class SpeedTester {
} }
async test () { async test () {
if (this.testCount % 10 === 0 || this.backupList.length === 0) { if (this.testCount % 10 <= 3 || this.backupList.length === 0) {
const newList = await this.getIpListFromDns(this.dnsMap) const newList = await this.getIpListFromDns(this.dnsMap)
const newBackupList = [...newList, ...this.backupList] const newBackupList = [...newList, ...this.backupList]
this.backupList = _.unionBy(newBackupList, 'host') this.backupList = _.unionBy(newBackupList, 'host')

Loading…
Cancel
Save