Skip to content

Commit 102c4b5

Browse files
committed
chore: check that indexing checks fail appropriately (#4108)
1 parent 2858171 commit 102c4b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

explorer/e2e/checkIsIndexing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function checkIsIndexing(systemStatusUrl: string): Promise<void> {
1111
process.exit(1);
1212
}
1313
const systemStatusJson = await systemStatusResponse.json();
14-
const isUp = systemStatusJson.up && systemStatusJson.progress.up;
14+
const isUp = false; // systemStatusJson.up && systemStatusJson.progress.up;
1515
const isIndexing =
1616
systemStatusJson.progress.unindexed_bundles > 0 ||
1717
systemStatusJson.progress.unindexed_documents > 0;

0 commit comments

Comments
 (0)