IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33056


Ignore:
Timestamp:
Jan 9, 2012, 1:52:12 PM (14 years ago)
Author:
bills
Message:

don't fault components that can't be updated. Return PSTAMP_NOT_AVAIALABLE instead of PSTAMP_GONE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pstamp/scripts/pstamp_checkdependent.pl

    r33011 r33056  
    285285            } elsif ($fault_count > $max_fault_count) {
    286286                print "$stage $stage_id has faulted $fault_count times. Giving up\n";
    287                 $fault = $PSTAMP_GONE;
    288                 faultComponent('chip', $chip->{chip_id}, $chip->{class_id}, $PSTAMP_GONE);
    289                 return $PSTAMP_GONE;
     287                # XXX: stop faulting chips for now
     288#                $fault = $PSTAMP_GONE;
     289#                faultComponent('chip', $chip->{chip_id}, $chip->{class_id}, $PSTAMP_GONE);
     290                $fault = $PSTAMP_NOT_AVAILABLE;
     291                return $fault;
    290292            }
    291293            # fault the dependent
Note: See TracChangeset for help on using the changeset viewer.