We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a573f40 commit bb64328Copy full SHA for bb64328
src/containers/Tenant/Query/QueryEditor/QueryEditor.tsx
@@ -143,10 +143,9 @@ export default function QueryEditor(props: QueryEditorProps) {
143
setLastQueryExecutionSettings(querySettings);
144
}
145
const queryId = uuidv4();
146
+ queryManagerInstance.abortQuery();
147
148
if (isStreamingEnabled) {
- queryManagerInstance.abortQuery();
149
-
150
const query = streamQuery({
151
actionType: 'execute',
152
query: text,
@@ -157,8 +156,6 @@ export default function QueryEditor(props: QueryEditorProps) {
157
156
158
queryManagerInstance.registerQuery(query);
159
} else {
160
161
162
const query = sendQuery({
163
164
0 commit comments