mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-26 17:51:54 +01: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,
|
||||
0
|
||||
),
|
||||
errors: statuses.filter((status) => status.last_status === "failed")
|
||||
.length,
|
||||
errors: statuses.filter(
|
||||
(status) => status.last_finished_status === "failed"
|
||||
).length,
|
||||
};
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user