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

@@ -201,8 +201,8 @@ export function estimateQueryCost(queryEditor) {
};
}
export function clearInactiveQueries() {
return { type: CLEAR_INACTIVE_QUERIES };
export function clearInactiveQueries(interval) {
return { type: CLEAR_INACTIVE_QUERIES, interval };
}
export function startQuery(query) {