From f6cf4c321553bde3ec684a852926a703d5d25517 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Mon, 17 Aug 2015 17:00:21 -0700 Subject: [PATCH] [Code Style] Fix error in persistence Fix typo in persistence provider for ElasticSearch related to refactoring to use prototypes, WTD-1482. --- platform/persistence/elastic/src/ElasticPersistenceProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/persistence/elastic/src/ElasticPersistenceProvider.js b/platform/persistence/elastic/src/ElasticPersistenceProvider.js index f5d083d7ea..d70d6aa34f 100644 --- a/platform/persistence/elastic/src/ElasticPersistenceProvider.js +++ b/platform/persistence/elastic/src/ElasticPersistenceProvider.js @@ -69,7 +69,7 @@ define( // Issue a request using $http; get back the plain JS object // from the expected JSON response ElasticPersistenceProvider.prototype.request = function (subpath, method, value, params) { - return this.http({ + return this.$http({ method: method, url: this.root + '/' + this.path + '/' + subpath, params: params,