From ca7263d89848d92b082bb5eb1159b0114f33e04e Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Thu, 17 Sep 2020 14:34:28 +0100 Subject: [PATCH] Explore/Actions: Stop loadExploreDatasourcesAndSetDatasource from running queries twice (#27577) --- public/app/features/explore/state/actions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/public/app/features/explore/state/actions.ts b/public/app/features/explore/state/actions.ts index e451a839ffc..b454f71c960 100644 --- a/public/app/features/explore/state/actions.ts +++ b/public/app/features/explore/state/actions.ts @@ -263,7 +263,6 @@ export function loadExploreDatasourcesAndSetDatasource( if (exploreDatasources.length >= 1) { await dispatch(changeDatasource(exploreId, datasourceName, { importQueries: true })); - dispatch(runQueries(exploreId)); } else { dispatch(loadDatasourceMissingAction({ exploreId })); }