Commit cd518907 authored by nanahira's avatar nanahira

updates

parent b7b25e16
Pipeline #331 passed with stages
in 10 minutes and 25 seconds
......@@ -107,8 +107,9 @@ class Checker {
})) {
const port = _.find(this.config.cdnRecords, r => record.RR.match(r.match)).port;
const isCDN = this.isCDNRecord(record);
this.message(`Found record ${record.RR}.${this.config.domain} => ${record.Value}:${port}.`);
res.push({record, port, isCDN, good: false});
const recordInfo: DomainRecordInfo = { record, port, isCDN, good: false };
this.message(`Found record ${this.getRecordPattern(recordInfo)}`);
res.push(recordInfo);
}
}
return res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment