Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Open
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
4 changes: 3 additions & 1 deletion lib/Sentry/Raven.pm
Original file line number Diff line number Diff line change
Expand Up @@ -673,9 +673,11 @@ sub _generate_auth_header {

sub _build_json_obj { JSON::XS->new()->utf8(1)->pretty(1)->allow_nonref(1) }
sub _build_ua_obj {
return LWP::UserAgent->new(
my $ua = LWP::UserAgent->new(
keep_alive => 1,
);
$ua->env_proxy;
return $ua;
}

=head1 EVENT CONTEXT
Expand Down