IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2010, 11:18:14 AM (16 years ago)
Author:
watersc1
Message:

Change to the check_registration code to ignore exposures with exp_name =~ /c.*/, which should prevent the problems we had today.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/automate_stacks.pl

    r28313 r28388  
    394394        if ($summit_fault) {
    395395            print STDERR "check_summit_copy: $date $exp_name has summit_fault $summit_fault";
    396             if ($exp_type ne 'OBJECT') {
     396            if (($exp_type ne 'OBJECT')||($exp_name =~ /^c.*/)) {
    397397                print STDERR " (but I don't care).\n";
    398398            }
     
    404404        elsif (!$download_state or $download_state eq 'run') {
    405405            print STDERR "check_summit_copy: $date $exp_name has download_state $download_state";
    406             if ($exp_type ne 'OBJECT') {
     406            if (($exp_type ne 'OBJECT')||($exp_name =~ /^c.*/)) {
    407407                print STDERR " (but I don't care).\n";
    408408            }
     
    414414        elsif (!$new_state or $new_state eq 'run' ) {
    415415            print STDERR "check_summit_copy: $date $exp_name has new_state $new_state";
    416             if ($exp_type ne 'OBJECT') {
     416            if (($exp_type ne 'OBJECT')||($exp_name =~ /^c.*/)) {
    417417                print STDERR " (but I don't care).\n";
    418418            }
Note: See TracChangeset for help on using the changeset viewer.