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 2858171 commit 102c4b5Copy full SHA for 102c4b5
explorer/e2e/checkIsIndexing.ts
@@ -11,7 +11,7 @@ export async function checkIsIndexing(systemStatusUrl: string): Promise<void> {
11
process.exit(1);
12
}
13
const systemStatusJson = await systemStatusResponse.json();
14
- const isUp = systemStatusJson.up && systemStatusJson.progress.up;
+ const isUp = false; // systemStatusJson.up && systemStatusJson.progress.up;
15
const isIndexing =
16
systemStatusJson.progress.unindexed_bundles > 0 ||
17
systemStatusJson.progress.unindexed_documents > 0;
0 commit comments