Changeset 227f558


Ignore:
Timestamp:
Dec 1, 2008 6:09:10 PM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
77a7634
Parents:
12e6ca8
Message:

Another take on getting rid of startup flakiness

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedkit/fed-tun.pl

    r12e6ca8 r227f558  
    263263        open(SSHCMD, $cmd)
    264264           or die "Failed to run ssh";
    265 
    266         my $check = <SSHCMD>;  # Make sure something ran...
     265        # Wait for the other end to report its work done.  This string comes
     266        # from the block below (after the elsif) -- tvf
     267        my $check;  # Make sure something ran...
     268
     269        while ($check = <SSHCMD>) {
     270            last if $check =~ /^Remote connection all/;
     271        }
    267272        print "Got line [$check] from remote side\n" if ($debug);
    268273
Note: See TracChangeset for help on using the changeset viewer.