DataSource: don't filter hidden queries automatically (#20088)

This commit is contained in:
Ryan McKinley
2019-10-30 09:51:13 -07:00
committed by GitHub
parent e940edc79f
commit 2bb4684741
10 changed files with 22 additions and 33 deletions
+3
View File
@@ -27,6 +27,9 @@ export class TestDataDataSource extends DataSourceApi<TestDataQuery> {
// Start streams and prepare queries
for (const target of options.targets) {
if (target.hide) {
continue;
}
if (target.scenarioId === 'streaming_client') {
streams.push(runStream(target, options));
} else {