Skip to content

Commit

Permalink
status: increase retries
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed May 10, 2024
1 parent 452a1c6 commit da7cf74
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions framework/ndn-testbed-status/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ export default defineComponent({
// Get each router's status
for (const [name, router] of Object.entries(this.routers)) {
if (!['SAVI', 'UCLA', "WU"].includes(name)) continue;
this.refreshRouter(router);
}
},
Expand All @@ -157,9 +156,9 @@ export default defineComponent({
},
async cat(name: string) {
const metadata = await retrieveMetadata(name, { retx: 2 });
const metadata = await retrieveMetadata(name, { retx: 3 });
const bytes = await fetch(metadata.name, {
cOpts: { retx: 2 }
cOpts: { retx: 3 }
});
return new TextDecoder().decode(bytes);
},
Expand Down

0 comments on commit da7cf74

Please sign in to comment.