Skip to content

Commit

Permalink
Revert "Keep previous query result if current query result in error (o…
Browse files Browse the repository at this point in the history
…pensearch-project#8863)"

This reverts commit bca4f5c.

Signed-off-by: abbyhu2000 <[email protected]>
  • Loading branch information
abbyhu2000 committed Nov 25, 2024
1 parent 539675e commit 4df77a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
2 changes: 0 additions & 2 deletions changelogs/fragments/8863.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,8 @@ export default function DiscoverCanvas({ setHeaderActionMenu, history, optionalR
if (next.bucketInterval && next.bucketInterval !== fetchState.bucketInterval)
shouldUpdateState = true;
if (next.chartData && next.chartData !== fetchState.chartData) shouldUpdateState = true;
// we still want to show rows from the previous query while current query is loading or the current query results in error
if (
next.status !== ResultStatus.LOADING &&
next.status !== ResultStatus.ERROR &&
next.rows &&
next.rows !== fetchState.rows
) {
// we still want to show rows from the previous query while current query is loading
if (next.status !== ResultStatus.LOADING && next.rows && next.rows !== fetchState.rows) {
shouldUpdateState = true;
setRows(next.rows);
}
Expand Down Expand Up @@ -157,16 +152,20 @@ export default function DiscoverCanvas({ setHeaderActionMenu, history, optionalR
timeFieldName={timeField}
/>
)}
{fetchState.status === ResultStatus.ERROR && (
<DiscoverNoResults
queryString={data.query.queryString}
query={data.query.queryString.getQuery()}
savedQuery={data.query.savedQueries}
timeFieldName={timeField}
/>
)}
{fetchState.status === ResultStatus.UNINITIALIZED && (
<DiscoverUninitialized onRefresh={() => refetch$.next()} />
)}
{fetchState.status === ResultStatus.LOADING && !rows?.length && <LoadingSpinner />}
{fetchState.status === ResultStatus.ERROR && !rows?.length && (
<DiscoverUninitialized onRefresh={() => refetch$.next()} />
)}
{(fetchState.status === ResultStatus.READY ||
(fetchState.status === ResultStatus.LOADING && !!rows?.length) ||
(fetchState.status === ResultStatus.ERROR && !!rows?.length)) &&
(fetchState.status === ResultStatus.LOADING && !!rows?.length)) &&
(isEnhancementsEnabled ? (
<>
<MemoizedDiscoverChartContainer {...fetchState} />
Expand Down

0 comments on commit 4df77a5

Please sign in to comment.