We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c69fe4 commit a9c73a1Copy full SHA for a9c73a1
src/main/java/org/scion/multiping/PingAll.java
@@ -106,7 +106,7 @@ public static void main(String[] args) throws IOException {
106
ResultSummary run() throws IOException {
107
List<ParseAssignments.HostEntry> allASes = service.getIsdAsEntries();
108
// remove entry for local AS
109
- long localAS = Scion.defaultService().getLocalIsdAs();
+ long localAS = service.getLocalIsdAs();
110
allASes = allASes.stream().filter(e -> e.getIsdAs() != localAS).collect(Collectors.toList());
111
// Process all ASes
112
for (ParseAssignments.HostEntry e : allASes) {
0 commit comments