From ec9db318e3360164b4ce38af5996718511000349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariano=20Ben=C3=ADtez=20Mulet?= Date: Tue, 9 Jan 2018 08:24:14 +0100 Subject: [PATCH] Fix typo in error message --- public/app/plugins/datasource/elasticsearch/elastic_response.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/elasticsearch/elastic_response.ts b/public/app/plugins/datasource/elasticsearch/elastic_response.ts index 6b18572caf7..ede5cb0ba3a 100644 --- a/public/app/plugins/datasource/elasticsearch/elastic_response.ts +++ b/public/app/plugins/datasource/elasticsearch/elastic_response.ts @@ -338,7 +338,7 @@ export class ElasticResponse { if (err.root_cause && err.root_cause.length > 0 && err.root_cause[0].reason) { result.message = err.root_cause[0].reason; } else { - result.message = err.reason || 'Unkown elatic error response'; + result.message = err.reason || 'Unkown elastic error response'; } if (response.$$config) {