From 4c27708b7b2a8aef38e27daa83d2ef4f515da034 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Tue, 7 Jul 2020 22:29:36 -0700 Subject: [PATCH] DataSourceWithBackend: add internal comment for new method (#26139) (cherry picked from commit 2b6833d0da5e1169692f69cfa9dbd00ef810ab4b) --- packages/grafana-runtime/src/utils/DataSourceWithBackend.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/grafana-runtime/src/utils/DataSourceWithBackend.ts b/packages/grafana-runtime/src/utils/DataSourceWithBackend.ts index 270772f0e2a..03dbfd7e655 100644 --- a/packages/grafana-runtime/src/utils/DataSourceWithBackend.ts +++ b/packages/grafana-runtime/src/utils/DataSourceWithBackend.ts @@ -129,6 +129,11 @@ export class DataSourceWithBackend< /** * Optionally augment the response before returning the results to the + * + * NOTE: this was added in 7.1 for azure, and will be removed in 7.2 + * when the entire response pipeline is Observable + * + * @internal */ processResponse?(res: DataQueryResponse): Promise;