From 4cff5bb0e69f03f047f8e8fe96a9ea336d7b4f31 Mon Sep 17 00:00:00 2001 From: David Steele Date: Sat, 18 Jun 2016 10:59:45 -0400 Subject: [PATCH] Fixed pgBackRest config sections being blank in the output when not loaded from cache. --- doc/lib/BackRestDoc/Common/DocExecute.pm | 2 +- doc/xml/release.xml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/lib/BackRestDoc/Common/DocExecute.pm b/doc/lib/BackRestDoc/Common/DocExecute.pm index 3a87348db..b499a4b03 100644 --- a/doc/lib/BackRestDoc/Common/DocExecute.pm +++ b/doc/lib/BackRestDoc/Common/DocExecute.pm @@ -573,7 +573,7 @@ sub backrestConfig $oHost->copyTo($strLocalFile, $$hCacheKey{file}, $oConfig->paramGet('owner', false, 'postgres:postgres'), '640'); - my $strConfig = fileStringRead($strLocalFile); + $strConfig = fileStringRead($strLocalFile); my @stryConfig = undef; if (trim($strConfig) ne '') diff --git a/doc/xml/release.xml b/doc/xml/release.xml index aa60fd5b9..fb41b8e1d 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -133,6 +133,10 @@

Fixed section names being repeated in the info output when multiple --require options depended on the same sections.

+ + +

Fixed config sections being blank in the output when not loaded from cache.

+