Changeset 1202
- Timestamp:
- 08/10/08 06:16:24 (3 months ago)
- Files:
-
- trunk/utils/mogtool (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/utils/mogtool
r1198 r1202 575 575 'description=s' => \$opts{des}, 576 576 'concurrent=i' => \$opts{concurrent}, 577 'noreplwait' => \$opts{noreplwait}, 577 578 578 579 # extract options … … 978 979 # verify replication and chunks 979 980 my %paths; # { chunknum => [ path, path, path ... ] } 980 my %still_need = ( %chunkinfo );981 my %still_need = $opts{noreplwait} ? () : ( %chunkinfo ); 981 982 while (%still_need) { 982 print " Beginning replication wait: " . join(' ', sort { $a <=> $b } keys %still_need) . "\n";983 print "Replicating (disable with --noreplwait): " . join(' ', sort { $a <=> $b } keys %still_need) . "\n"; 983 984 sleep 1; # give things time to replicate some 984 985
