Skip to content

Commit

Permalink
new dist
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Mar 11, 2024
1 parent f231bb0 commit b30bbcb
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions dist/src/generatePrefixesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ module.exports = function generatePrefixes(inputParameters) {
params: {
client: clientId,
resource: asn,
lod: 0
lod: 0,
data_overload_limit: "ignore"
}
});
if (debug) {
Expand Down Expand Up @@ -148,7 +149,8 @@ module.exports = function generatePrefixes(inputParameters) {
params: {
min_peers_seeing: 0,
client: clientId,
resource: prefix
resource: prefix,
data_overload_limit: "ignore"
}
});
if (debug) {
Expand Down Expand Up @@ -178,7 +180,8 @@ module.exports = function generatePrefixes(inputParameters) {
path: ["data", "related-prefixes", "data.json"],
params: {
client: clientId,
resource: prefix
resource: prefix,
data_overload_limit: "ignore"
}
});
if (debug) {
Expand Down Expand Up @@ -234,7 +237,8 @@ module.exports = function generatePrefixes(inputParameters) {
path: ["data", "announced-prefixes", "data.json"],
params: {
client: clientId,
resource: asn
resource: asn,
data_overload_limit: "ignore"
}
});
logger("Getting announced prefixes of AS".concat(asn));
Expand Down

0 comments on commit b30bbcb

Please sign in to comment.