Explorar el Código

Small fix to PR 2119

Torkel Ödegaard hace 10 años
padre
commit
97f54ac385
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      public/app/plugins/datasource/opentsdb/datasource.js

+ 4 - 4
public/app/plugins/datasource/opentsdb/datasource.js

@@ -91,11 +91,10 @@ function (angular, _, kbn) {
     };
 
     OpenTSDBDatasource.prototype.performMetricKeyValueLookup = function(metric, key) {
-      if(metric === "") {
-        throw "Metric not set.";
-      } else if(key === "") {
-        throw "Key not set.";
+      if(!metric || !key) {
+        return $q.when([]);
       }
+
       var m = metric + "{" + key + "=*}";
       var options = {
         method: 'GET',
@@ -104,6 +103,7 @@ function (angular, _, kbn) {
           m: m,
         }
       };
+
       return backendSrv.datasourceRequest(options).then(function(result) {
         result = result.data.results;
         var tagvs = [];