From 991eaadce42fdd8e0170d6c9d0fdc9bbe4e453f0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 13 Nov 2015 16:22:03 +0000 Subject: [PATCH] [SIGNED-OFF]Bug 15189: Do not close STDERR when running in background mode The batch records modification tool close STDERR, it's useless and hide warnings/errors. Like the other processes using the BackgroundJob module, this one should let it open. Signed-off-by: Hector Castro --- tools/batch_record_modification.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/batch_record_modification.pl b/tools/batch_record_modification.pl index 60775a9..5b46823 100755 --- a/tools/batch_record_modification.pl +++ b/tools/batch_record_modification.pl @@ -167,7 +167,6 @@ if ( $op eq 'form' ) { exit 0; } elsif (defined $pid) { close STDOUT; - close STDERR; } else { warn "fork failed while attempting to run tools/batch_record_modification.pl as a background job"; exit 0; -- 1.7.10.4