1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00

removed debug comments

This commit is contained in:
Massimo Candela
2019-11-28 15:54:03 +01:00
parent 464a219f4d
commit 3373443ca6

View File

@@ -120,22 +120,20 @@ export default class InputYml extends Input {
};
validate = (fileContent) => {
let prefixesError, optionsError = [];
let prefixesError;
let optionsError;
const options = fileContent.options;
// if (options && options.monitorASns) {
// optionsError = Object
// .keys(options.monitorASns)
// .map(asn => {
// console.log(new AS("2914").isValid());
// if (!new AS(asn).isValid()) {
// return "Not a valid AS number in monitorASns";
// }
// });
//
// console.log(optionsError);
// }
if (options && options.monitorASns) {
optionsError = Object
.keys(options.monitorASns)
.map(asn => {
if (!new AS(asn).isValid()) {
return "Not a valid AS number in monitorASns";
}
});
}
prefixesError = Object
.keys(fileContent)
@@ -201,13 +199,16 @@ export default class InputYml extends Input {
}
return null;
})
.filter(i => i != null)
});
const errors = [...prefixesError, ...optionsError].filter(i => i != null);
errors
.map(error => {
throw new Error(error);
});
return [...prefixesError, ...optionsError].length === 0;
return errors.length === 0;
};
_validateRegex = (regex) => {