Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PGBuild/WebTxn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ sub run_web_txn
my $sig = '.256h.' . hmac_sha256_hex($content, $secret);

my $ua = LWP::UserAgent->new;
$ua->agent("Postgres Build Farm Reporter");
$ua->agent("Postgres Build Farm Reporter/$VERSION");
if (my $proxy = $ENV{BF_PROXY})
{
my $targetURI = URI->new($target);
Expand Down
2 changes: 1 addition & 1 deletion manage_alerts.pl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ BEGIN
}

my $ua = LWP::UserAgent->new;
$ua->agent("Postgres Build Farm Reporter");
$ua->agent("Postgres Build Farm Reporter/$VERSION");
if (my $proxy = $ENV{BF_PROXY})
{
my $targetURI = URI->new($target);
Expand Down
2 changes: 1 addition & 1 deletion run_branches.pl
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ sub get_branches_of_interest
# make sure we have https protocol support if it's required
require LWP::Protocol::https if $url =~ /^https:/;
my $ua = LWP::UserAgent->new;
$ua->agent("Postgres Build Farm Reporter");
$ua->agent("Postgres Build Farm Reporter/$VERSION");
if (my $proxy = $ENV{BF_PROXY})
{
my $targetURI = URI->new($url);
Expand Down
2 changes: 1 addition & 1 deletion setnotes.pl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ BEGIN
}

my $ua = LWP::UserAgent->new;
$ua->agent("Postgres Build Farm Reporter");
$ua->agent("Postgres Build Farm Reporter/$VERSION");
if (my $proxy = $ENV{BF_PROXY})
{
my $targetURI = URI->new($target);
Expand Down
2 changes: 1 addition & 1 deletion update_personality.pl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ BEGIN
}

my $ua = LWP::UserAgent->new;
$ua->agent("Postgres Build Farm Reporter");
$ua->agent("Postgres Build Farm Reporter/$VERSION");
if (my $proxy = $ENV{BF_PROXY})
{
my $targetURI = URI->new($upgrade_target);
Expand Down