Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2017-03-27 14:34:33 +0000
committerPeter Eisentraut2017-03-27 14:34:33 +0000
commit3371e4d9b12455fe1f8d1516d0bd915aab86be17 (patch)
tree278f4fc47055897597c922eb0b796ca302ceb71a /src/test/perl/RecursiveCopy.pm
parenta171f01501e11a2ef65d437ac2397a0050892d88 (diff)
Change default of log_directory to 'log'
The previous default 'pg_log' might have indicated by its "pg_" prefix that it is an internal system directory. The new default is more in line with the typical naming of directories with user-facing log files. Together with the renaming of pg_clog and pg_xlog, this should clear up that difference. Author: Andreas Karlsson <andreas@proxel.se>
Diffstat (limited to 'src/test/perl/RecursiveCopy.pm')
-rw-r--r--src/test/perl/RecursiveCopy.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/perl/RecursiveCopy.pm b/src/test/perl/RecursiveCopy.pm
index 3e988132868..28ecaf6db23 100644
--- a/src/test/perl/RecursiveCopy.pm
+++ b/src/test/perl/RecursiveCopy.pm
@@ -48,9 +48,9 @@ attempted.
RecursiveCopy::copypath('/some/path', '/empty/dir',
filterfn => sub {
- # omit pg_log and contents
+ # omit log/ and contents
my $src = shift;
- return $src ne 'pg_log';
+ return $src ne 'log';
}
);