diff --git a/web/static/js/graph.js b/web/static/js/graph.js index 418d15ced..a39237359 100644 --- a/web/static/js/graph.js +++ b/web/static/js/graph.js @@ -311,7 +311,9 @@ Prometheus.Graph.prototype.submitQuery = function() { data: self.queryForm.serialize(), success: success, error: function(xhr, resp) { - alert("Error executing query: " + resp); + if (resp != "abort") { + alert("Error executing query: " + resp); + } }, complete: function() { var duration = new Date().getTime() - startTime;