Skip to content

Commit fd47d5a

Browse files
committed
chore: undo test failure check (#4108)
1 parent 102c4b5 commit fd47d5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: explorer/e2e/checkIsIndexing.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export async function checkIsIndexing(systemStatusUrl: string): Promise<void> {
66
const systemStatusResponse = await fetch(systemStatusUrl);
77
if (systemStatusResponse.status != 200) {
88
console.log(
9-
"WARNING: The System Status API is currently unavailable, or an incorrect url was passed. Tests may fail for unexpected reasons."
9+
"ERROR: The System Status API is currently unavailable, or an incorrect url was passed. Please rerun tests when this is resolved."
1010
);
1111
process.exit(1);
1212
}
1313
const systemStatusJson = await systemStatusResponse.json();
14-
const isUp = false; // systemStatusJson.up && systemStatusJson.progress.up;
14+
const isUp = 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)