]> git.decadent.org.uk Git - dak.git/commitdiff
dak/clean_suites.py: use '>' instead of '>='
authorAnsgar Burchardt <ansgar@debian.org>
Tue, 14 Aug 2012 05:55:39 +0000 (07:55 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Tue, 14 Aug 2012 05:56:11 +0000 (07:56 +0200)
dak/clean_suites.py

index e9360012550da7fd686a5d1db17951eda60d0873..e571ae0e8c585aee24e2b3f9dc8ee2721d2705a6 100755 (executable)
@@ -214,7 +214,7 @@ def clean_binaries(now_date, session):
          AND NOT EXISTS (SELECT 1 FROM files_archive_map af
                                   JOIN archive_delete_date ad ON af.archive_id = ad.archive_id
                                  WHERE af.file_id = b.file
-                                   AND (af.last_used IS NULL OR af.last_used >= ad.delete_date))
+                                   AND (af.last_used IS NULL OR af.last_used > ad.delete_date))
       RETURNING f.filename
     """)
     for b in q:
@@ -254,7 +254,7 @@ def clean(now_date, archives, max_delete, session):
            AND NOT EXISTS (SELECT 1 FROM files_archive_map af
                                     JOIN archive_delete_date ad ON af.archive_id = ad.archive_id
                                    WHERE af.file_id = source.file
-                                     AND (af.last_used IS NULL OR af.last_used >= ad.delete_date))
+                                     AND (af.last_used IS NULL OR af.last_used > ad.delete_date))
         RETURNING source.id AS id, f.filename AS filename
       ),
       deleted_dsc_files AS (