Skip to content

Commit c036f1e

Browse files
committed
viewer: load newer indexes
1 parent 392e1a1 commit c036f1e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

viewer/src/runner/Runner.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,13 @@ let index = {
217217
out.protocol = v.protocol;
218218
}
219219
return out;
220-
} catch {
220+
} catch (e) {
221+
console.warn("failed to load index", id, e);
221222
// ignored
222223
}
223224
},
224225
async all(c: Promise<CacheProvider>): Promise<any[]> {
225-
let lastIndex = 21;
226+
let lastIndex = 25;
226227
let indexes: c2.IndexData[] = await Promise.all(
227228
_.range(0, lastIndex + 1)
228229
.map(async i => this.load(c, i)),

0 commit comments

Comments
 (0)