mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
fix(sqllab): Add threshold for checking inactive queries (#24536)
Co-authored-by: Justin Park <justinpark@apache.org>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user