Make "rescanall" only check bugs which have changed in the last two days.
git-svn-id: svn://10.0.0.236/trunk@50345 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -369,7 +369,7 @@ if ($#ARGV == 1) {
|
|||||||
|
|
||||||
if ($ARGV[0] eq "rescanall") {
|
if ($ARGV[0] eq "rescanall") {
|
||||||
print "<br> Collecting bug ids...\n";
|
print "<br> Collecting bug ids...\n";
|
||||||
SendSQL("select bug_id from bugs order by bug_id");
|
SendSQL("select bug_id from bugs where to_days(now()) - to_days(delta_ts) <= 2 order by bug_id");
|
||||||
my @list;
|
my @list;
|
||||||
while (my @row = FetchSQLData()) {
|
while (my @row = FetchSQLData()) {
|
||||||
push @list, $row[0];
|
push @list, $row[0];
|
||||||
|
|||||||
Reference in New Issue
Block a user