Hello community, here is the log from the commit of package cacti-spine for openSUSE:Factory checked in at 2020-08-04 20:24:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cacti-spine (Old) and /work/SRC/openSUSE:Factory/.cacti-spine.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cacti-spine" Tue Aug 4 20:24:06 2020 rev:29 rq:824222 version:1.2.14 Changes: -------- --- /work/SRC/openSUSE:Factory/cacti-spine/cacti-spine.changes 2020-07-15 15:06:43.143509452 +0200 +++ /work/SRC/openSUSE:Factory/.cacti-spine.new.3592/cacti-spine.changes 2020-08-04 20:24:18.141020436 +0200 @@ -1,0 +2,6 @@ +Mon Aug 3 21:27:49 UTC 2020 - Andreas Stieger <[email protected]> + +- cacti-spine 1.2.14: + * fix spine not updating rrd_next_step + +------------------------------------------------------------------- Old: ---- cacti-spine-1.2.13.tar.gz New: ---- cacti-spine-1.2.14.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cacti-spine.spec ++++++ --- /var/tmp/diff_new_pack.oOLX7I/_old 2020-08-04 20:24:19.037020738 +0200 +++ /var/tmp/diff_new_pack.oOLX7I/_new 2020-08-04 20:24:19.041020739 +0200 @@ -17,7 +17,7 @@ Name: cacti-spine -Version: 1.2.13 +Version: 1.2.14 Release: 0 Summary: Threaded poller for Cacti written in C License: LGPL-2.1-or-later ++++++ cacti-spine-1.2.13.tar.gz -> cacti-spine-1.2.14.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cacti-spine-1.2.13/CHANGELOG new/cacti-spine-1.2.14/CHANGELOG --- old/cacti-spine-1.2.13/CHANGELOG 2020-07-14 02:31:18.000000000 +0200 +++ new/cacti-spine-1.2.14/CHANGELOG 2020-08-03 00:31:02.000000000 +0200 @@ -1,5 +1,8 @@ The Cacti Group | spine +1.2.14 +-issue#162: Spine not updating rrd_next_step + 1.2.13 -issue#156: Compile on Cygwin is failing due to icmp6 headers missing diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cacti-spine-1.2.13/configure.ac new/cacti-spine-1.2.14/configure.ac --- old/cacti-spine-1.2.13/configure.ac 2020-07-14 02:31:18.000000000 +0200 +++ new/cacti-spine-1.2.14/configure.ac 2020-08-03 00:31:02.000000000 +0200 @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(Spine Poller, 1.2.13, http://www.cacti.net/issues.php) +AC_INIT(Spine Poller, 1.2.14, http://www.cacti.net/issues.php) AC_CONFIG_AUX_DIR(config) AC_SUBST(ac_aux_dir) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cacti-spine-1.2.13/spine.c new/cacti-spine-1.2.14/spine.c --- old/cacti-spine-1.2.13/spine.c 2020-07-14 02:31:18.000000000 +0200 +++ new/cacti-spine-1.2.14/spine.c 2020-08-03 00:31:02.000000000 +0200 @@ -695,7 +695,7 @@ total_items = atoi(mysql_row[0]); db_free_result(tresult); - if (total_items < device_threads) { + if (total_items && total_items < device_threads) { device_threads = total_items; }
