From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Andrew Dunstan <andrew(dot)dunstan(at)2ndquadrant(dot)com> |
Cc: | buildfarm-members(at)postgresql(dot)org |
Subject: | Re: Announcing Release 6 of PostgreSQL Buildfarm client |
Date: | 2018-01-04 17:51:53 |
Message-ID: | 9420.1515088313@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | buildfarm-members pgsql-hackers |
I wrote:
> which means I get mail every time the cron script runs. Needless
> to say, that will not do. Previously, mail only showed up when
> there was a git checkout failure. How do I get back to the
> old behavior?
Diff'ing the v5 and v6 releases soon provided the answer: for some
reason v6 is forcing the verbose switch on. I hope that was
unintentional? Anyway, I'm happy again after applying this patch:
--- PGBuild/Options.pm~ 2018-01-04 08:38:29.000000000 -0500
+++ PGBuild/Options.pm 2018-01-04 12:40:14.000000000 -0500
@@ -78,8 +78,6 @@
GetOptions(%standard_options, @_)
|| die "bad command line";
- # override GetOptions default for :i
- $verbose = 1 if (defined($verbose) && $verbose==0);
$verbose ||= 0; # stop complaints about undefined var in numeric comparison
}
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew Dunstan | 2018-01-04 18:08:25 | Re: Announcing Release 6 of PostgreSQL Buildfarm client |
Previous Message | Tom Lane | 2018-01-04 17:35:12 | Re: Announcing Release 6 of PostgreSQL Buildfarm client |
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2018-01-04 17:59:04 | Re: explain analyze output with parallel workers - question about meaning of information for explain.depesz.com |
Previous Message | Robert Haas | 2018-01-04 17:40:34 | Re: [HACKERS] MERGE SQL Statement for PG11 |