summaryrefslogtreecommitdiff
path: root/FS/bin
diff options
context:
space:
mode:
authorivan <ivan>2011-02-27 22:04:31 +0000
committerivan <ivan>2011-02-27 22:04:31 +0000
commit3be2c32907ce979a4a33cac7ee40891447e885a6 (patch)
tree7044b08f8b8534fa35d0208d51daeefde93a57f2 /FS/bin
parent0dfaa4edbfa786b0cd7c444312fd68ff238717d5 (diff)
add start of torrus srvderive daemon, RT#10574
Diffstat (limited to 'FS/bin')
-rw-r--r--FS/bin/freeside-torrus-srvderive15
1 files changed, 13 insertions, 2 deletions
diff --git a/FS/bin/freeside-torrus-srvderive b/FS/bin/freeside-torrus-srvderive
index 3a23f7cf9..04b763582 100644
--- a/FS/bin/freeside-torrus-srvderive
+++ b/FS/bin/freeside-torrus-srvderive
@@ -82,9 +82,13 @@ while (1) {
AND srvexport.srv_date = other.srv_date
AND ABS( $_date - $other_date ) <= 60
)
- $orderlimit
";
+ $ssql .= " AND srv_date >= '". $torrus_srvderive->last_srv_date. "' "
+ if $torrus_srvderive->last_srv_date;
+
+ $ssql .= $orderlimit;
+
warn $ssql if $DEBUG > 1;
my $sth = dbh->prepare($ssql) or die $DBI::errstr; #better recovery?
$sth->execute($serviceid, $serviceid) or die $sth->errstr;
@@ -125,10 +129,17 @@ while (1) {
my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery?
$isth->execute( @param ) or die $isth->errstr;
- dbh->commit or die dbh->errstr;
}
+ if ( $srv_date ne $torrus_srvderive->last_srv_date ) {
+ warn "updating last_srv_date of $serviceid to $srv_date\n" if $DEBUG;
+ $torrus_srvderive->last_srv_date($srv_date);
+ my $error = $torrus_srvderive->replace;
+ die $error if $error;
+ }
+ dbh->commit or die dbh->errstr;
+
$prev = $cur;
}