diff options
author | ivan <ivan> | 2011-05-09 20:38:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-05-09 20:38:19 +0000 |
commit | fde2470a7cece53bfd0b51b6e345f3153cbfa744 (patch) | |
tree | dfe391269ba7f89485a83ef24dae15cb075024dd | |
parent | 8dcc0cc3051227f3b86281d4afaee46f2ec11f82 (diff) |
better retry behavior for non-found taqua CDR rewrites, RT#12181
-rw-r--r-- | FS/bin/freeside-cdrrewrited | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/bin/freeside-cdrrewrited b/FS/bin/freeside-cdrrewrited index 7df5a3a46..f46504844 100644 --- a/FS/bin/freeside-cdrrewrited +++ b/FS/bin/freeside-cdrrewrited @@ -105,7 +105,7 @@ while (1) { my $cantfind = "can't find primary CDR with session ". $cdr->sessionnum. ", src ". $cdr->subscriber; - if ( $cdr->calldate_unix + $accountcode_giveup < time ) { + if ( $cdr->calldate_unix + $accountcode_giveup > time ) { push @status, 'taqua-accountcode-NOTFOUND'; $cdr->status('done'); #so it doesn't try to rate } else { |