More Daemon debugging.

This commit is contained in:
Daniel Nichter
2012-02-14 10:20:40 -07:00
parent e9f6325592
commit c67adc1a8f
3 changed files with 14 additions and 9 deletions

View File

@@ -270,8 +270,6 @@ sub wait_for_table {
}
return 1;
},
0.25,
15,
);
}
@@ -280,12 +278,13 @@ sub wait_for_files {
return wait_until(
sub {
foreach my $file (@files) {
return 0 if ! -f $file;
if ( ! -f $file ) {
PTDEVDEBUG && _d('Waiting for file', $file);
return 0;
}
}
return 1;
},
0.25,
15,
);
}