Browse Source

Last miniute fix for issue in influxdb http request calling

Torkel Ödegaard 11 years ago
parent
commit
70be333691
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/services/influxdb/influxdbDatasource.js

+ 1 - 1
src/app/services/influxdb/influxdbDatasource.js

@@ -227,7 +227,7 @@ function (angular, _, kbn, InfluxSeries) {
           data:   data
         };
 
-        return $http(options).then(function (data) {
+        return $http(options).success(function (data) {
           deferred.resolve(data);
         });
       }, 10);