mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-13 17:40:57 +02:00
errors in the summary row should be counting last_finished_status as reflected in the per connector rows (#3484)
Co-authored-by: Richard Kuo (Danswer) <rkuo@onyx.app>
This commit is contained in:
parent
788b3015bc
commit
dd0c4b64df
@ -326,8 +326,9 @@ export function CCPairIndexingStatusTable({
|
|||||||
(sum, status) => sum + status.docs_indexed,
|
(sum, status) => sum + status.docs_indexed,
|
||||||
0
|
0
|
||||||
),
|
),
|
||||||
errors: statuses.filter((status) => status.last_status === "failed")
|
errors: statuses.filter(
|
||||||
.length,
|
(status) => status.last_finished_status === "failed"
|
||||||
|
).length,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user