]> granicus.if.org Git - postgresql/commitdiff
Increase git_changelog's timestamp_slop from 10 min to 1 day.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Dec 2013 16:33:43 +0000 (11:33 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Dec 2013 16:33:49 +0000 (11:33 -0500)
Many committers seem to now be using a work flow in which back-patched
commits are timestamped minutes or even hours apart in different branches
(most likely because they commit in one branch before starting work on
the next one).  git_changelog was failing to merge its reports in such
cases, so increase the max time it's willing to merge commits across.
I considered getting rid of the limit altogether, but that produces
some odd results in terms of how the merged commit gets sorted relative
to unrelated commits.

src/tools/git_changelog

index 49c34ed8c8eb19f7b216a98c589ee7df720c5866..8221934c8c2ed868ce94a68d3ea88dc98548315c 100755 (executable)
@@ -44,7 +44,7 @@ my @BRANCHES = qw(master
   REL6_5_PATCHES REL6_4);
 
 # Might want to make this parameter user-settable.
-my $timestamp_slop = 600;
+my $timestamp_slop = 24*60*60;
 
 my $details_after = 0;
 my $post_date     = 0;