From 4d214f5aea753fc9447353f166be370799727498 Mon Sep 17 00:00:00 2001 From: Andrej Ocenas Date: Wed, 16 Oct 2019 14:20:21 +0200 Subject: [PATCH] Loki: Remove param (#19854) --- public/app/plugins/datasource/loki/datasource.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/public/app/plugins/datasource/loki/datasource.ts b/public/app/plugins/datasource/loki/datasource.ts index 554adc9b80a..3a212853e12 100644 --- a/public/app/plugins/datasource/loki/datasource.ts +++ b/public/app/plugins/datasource/loki/datasource.ts @@ -173,10 +173,6 @@ export class LokiDatasource extends DataSourceApi { * This returns a bit different dataFrame than runQueries as it returns single dataframe even if there are multiple * Loki streams, sets only common labels on dataframe.labels and has additional dataframe.fields.labels for unique * labels per row. - * - * @param options - * @param observer Callback that will be called with new data. Is optional but only because we run this function - * even if there are no live targets defined in the options which would mean this is noop and observer is not called. */ runLiveQuery = (options: DataQueryRequest, target: LokiQuery): Observable => { const liveTarget = this.prepareLiveTarget(target, options);