IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 1:41:31 PM (17 years ago)
Author:
bills
Message:

added hack to prevent pending skycell nodes from preventing
nodes higher up in the tree from being processed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/magictool.c

    r24946 r24947  
    804804    // treat limit == 0 as "no limit"
    805805    if (limit) {
    806         psString limitString = psDBGenerateLimitSQL(limit);
     806        // hack to prevent pending skycells from preventing nodes from getting processed
     807        psString limitString = psDBGenerateLimitSQL((limit + 1) /2);
    807808        psStringAppend(&query, " %s", limitString);
    808809        psFree(limitString);
     
    14491450
    14501451    // note: on failure censorStage issues the rollback
     1452#ifdef notyet
    14511453    if (!censorStage(config, "raw", whereClause)) {
    14521454        psFree(whereClause);
     
    14691471        return false;
    14701472    }
     1473#endif
    14711474
    14721475    psFree(whereClause);
Note: See TracChangeset for help on using the changeset viewer.