We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392e1a1 commit c036f1eCopy full SHA for c036f1e
1 file changed
viewer/src/runner/Runner.ts
@@ -217,12 +217,13 @@ let index = {
217
out.protocol = v.protocol;
218
}
219
return out;
220
- } catch {
+ } catch (e) {
221
+ console.warn("failed to load index", id, e);
222
// ignored
223
224
},
225
async all(c: Promise<CacheProvider>): Promise<any[]> {
- let lastIndex = 21;
226
+ let lastIndex = 25;
227
let indexes: c2.IndexData[] = await Promise.all(
228
_.range(0, lastIndex + 1)
229
.map(async i => this.load(c, i)),
0 commit comments