IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35429


Ignore:
Timestamp:
Apr 24, 2013, 3:04:00 PM (13 years ago)
Author:
bills
Message:

include components in state error_cleaned in the list of files pending cleanup
This allows them to be cleaned later.

Location:
trunk/ippTools/share
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/chiptool_pendingcleanupimfile.sql

    r33171 r35429  
    1313    USING(chip_id)
    1414WHERE
    15     ((chipRun.state = 'goto_cleaned' AND (chipProcessedImfile.data_state = 'full'
    16                                        OR chipProcessedImfile.data_state = 'update') AND chipProcessedImfile.quality = 0)
     15    ((chipRun.state = 'goto_cleaned'
     16        AND (chipProcessedImfile.data_state = 'full'
     17          OR chipProcessedImfile.data_state = 'update'
     18          OR chipProcessedImfile.data_state = 'error_cleaned')
     19        AND chipProcessedImfile.quality = 0)
    1720OR
    1821    (chipRun.state = 'goto_scrubbed' AND chipProcessedImfile.data_state != 'scrubbed')
  • trunk/ippTools/share/warptool_pendingcleanupskyfile.sql

    r33171 r35429  
    1010    USING(warp_id)
    1111WHERE
    12    ((warpRun.state = 'goto_cleaned'  AND (warpSkyfile.data_state = 'full'
    13                                       OR  warpSkyfile.data_state = 'update')
    14     AND warpSkyfile.quality = 0)
     12   ((warpRun.state = 'goto_cleaned' 
     13       AND (warpSkyfile.data_state = 'full'
     14          OR  warpSkyfile.data_state = 'error_cleaned'
     15          OR  warpSkyfile.data_state = 'update')
     16       AND warpSkyfile.quality = 0)
    1517    OR
    1618    (warpRun.state = 'goto_scrubbed' AND warpSkyfile.data_state != 'scrubbed')
Note: See TracChangeset for help on using the changeset viewer.