From 314b0ade7b859ba882133d5f68ed1e83268ae631 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 13 Nov 2015 16:22:03 +0000 Subject: [PATCH] [PASSED QA] 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 Signed-off-by: Katrin Fischer --- 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 3aec4f7..f96ec5d 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.9.1