More verbosity around the FIFO creation.
This commit is contained in:
parent
c4e5664bb5
commit
bd38cf6198
1 changed files with 2 additions and 1 deletions
|
@ -225,8 +225,9 @@ while (1) {
|
||||||
$query{fifoName} = $fifoFileName;
|
$query{fifoName} = $fifoFileName;
|
||||||
my $getAllOutput = $query{getAllOutput};
|
my $getAllOutput = $query{getAllOutput};
|
||||||
(tied %query)->shunlock;
|
(tied %query)->shunlock;
|
||||||
|
print STDERR "unlocked tied query..." if $VERBOSE > 2;
|
||||||
open(my $fifoFH, ">", $fifoFileName);
|
open(my $fifoFH, ">", $fifoFileName);
|
||||||
print STDERR "and beginning write to it." if $VERBOSE > 2;
|
print STDERR "and began write to fifo." if $VERBOSE > 2;
|
||||||
my($seenSeperator, $prevLine) = ( ((defined $getAllOutput) and $getAllOutput), "");
|
my($seenSeperator, $prevLine) = ( ((defined $getAllOutput) and $getAllOutput), "");
|
||||||
my $rbcOut = $runningBeanQuery->before();
|
my $rbcOut = $runningBeanQuery->before();
|
||||||
foreach my $line (split /\n/, $rbcOut) {
|
foreach my $line (split /\n/, $rbcOut) {
|
||||||
|
|
Loading…
Reference in a new issue