fix(sqllab): Add threshold for checking inactive queries (#24536)

Co-authored-by: Justin Park <justinpark@apache.org>
This commit is contained in:
JUST.in DO IT
2023-06-29 14:06:12 -07:00
committed by GitHub
parent 19deb9141d
commit 8ba0b81957
3 changed files with 5 additions and 4 deletions

View File

@@ -647,6 +647,7 @@ export default function sqlLabReducer(state = {}, action) {
Object.entries(queries).filter(([, query]) => {
if (
['running', 'pending'].includes(query.state) &&
Date.now() - query.startDttm > action.interval &&
query.progress === 0
) {
return false;