hotfix as fetch failure
This commit is contained in:
parent
8672d74174
commit
c1d68c0bfa
|
|
@ -43,8 +43,7 @@ public class HEInfoProvider implements ASInfoProvider {
|
|||
return getIPv4Subnets(inputStream);
|
||||
}
|
||||
} else {
|
||||
SystemLogger.error("Unable to get info about AS" + as, CTX);
|
||||
return Collections.emptyList();
|
||||
throw new RuntimeException("Unable to get info about AS" + as);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,8 +39,7 @@ public class RIPEInfoProvider implements ASInfoProvider {
|
|||
return getIPv4Subnets(inputStream);
|
||||
}
|
||||
} else {
|
||||
SystemLogger.error("Unable to get info about AS" + as, CTX);
|
||||
return Collections.emptyList();
|
||||
throw new RuntimeException("Unable to get info about AS" + as);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue