diff --git a/CHANGES b/CHANGES index 7aaf1acae2..67e113f629 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +3507. [bug] Statistics channel XSL (when built with + --enable-newstats) had a glitch when attempting + to chart query data before any queries had been + received. [RT #32620] + 3505. [bug] When setting "max-cache-size" and "max-acache-size", larger values than 4 gigabytes could not be set explicitly, though larger sizes were available diff --git a/bin/named/bind9.ver3.xsl b/bin/named/bind9.ver3.xsl index a2b6b9ee78..fe5b6455fe 100644 --- a/bin/named/bind9.ver3.xsl +++ b/bin/named/bind9.ver3.xsl @@ -50,10 +50,11 @@ // Server Incoming query Types while(g = graphs.shift()){ - // alert("going for: " + g.target); - drawChart(g.title,g.target,g.data); + // alert("going for: " + g.target); + if(g.data.length > 1){ + drawChart(g.title,g.target,g.data); + } } - } // Server Incoming Queries Types @@ -207,7 +208,7 @@