Help for this page

Select Code to Download


  1. or download this
    sub wrapper {
       eval {
    ...
       }
       return 1;     #returns true if we should retry
    }
    
  2. or download this
    use constant RETRIES => 3;
    for (1..RETRIES) { last if wrapper() }
    
  3. or download this
    use constant RETRIES => 3;
    our $give_up = 0;
    ...
    }
    die ('Tried '.RETRIES.' times without success. Giving up.')
       if $give_up;