diff --git a/CHANGES.md b/CHANGES.md index a49a4bd..d8c5ce4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +## GRNOC TSDS Aggregate 1.0.1 -- Fri Mar 04 2016 + +### Features: + * ISSUE=13132 Fixed issue where upon first install the daemon would make the determination that everything needed aggregation. + + ## GRNOC TSDS Aggregate 1.0.0 -- Fri Feb 12 2016 ### Features: diff --git a/grnoc-tsds-aggregate.spec b/grnoc-tsds-aggregate.spec index cfc3b0e..8d06dcb 100644 --- a/grnoc-tsds-aggregate.spec +++ b/grnoc-tsds-aggregate.spec @@ -1,6 +1,6 @@ Summary: GRNOC TSDS Aggregate Name: grnoc-tsds-aggregate -Version: 1.0.0 +Version: 1.0.1 Release: 1%{?dist} License: GRNOC Group: Measurement diff --git a/lib/GRNOC/TSDS/Aggregate.pm b/lib/GRNOC/TSDS/Aggregate.pm index 4687422..95c7ea4 100644 --- a/lib/GRNOC/TSDS/Aggregate.pm +++ b/lib/GRNOC/TSDS/Aggregate.pm @@ -3,6 +3,6 @@ package GRNOC::TSDS::Aggregate; use strict; use warnings; -our $VERSION = "1.0.0"; +our $VERSION = "1.0.1"; 1; diff --git a/lib/GRNOC/TSDS/Aggregate/Daemon.pm b/lib/GRNOC/TSDS/Aggregate/Daemon.pm index d1c949f..024db3c 100644 --- a/lib/GRNOC/TSDS/Aggregate/Daemon.pm +++ b/lib/GRNOC/TSDS/Aggregate/Daemon.pm @@ -739,7 +739,7 @@ sub _get_data { } # Otherwise detect anything that needs doing else { - $query->{'updated'} = {'$gt' => 0}; + $query->{'updated'} = {'$gt' => $last_run}; $hint = "updated_1_identifier_1"; }