Version and modules updated for version 3.6.0

This commit is contained in:
Sveta Smirnova
2024-05-25 16:13:43 +03:00
parent a8258bf784
commit 65914c4c87
37 changed files with 128 additions and 74 deletions

View File

@@ -37,7 +37,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.5.7';
our $VERSION = '3.6.0';
use strict;
use warnings FATAL => 'all';
@@ -2918,7 +2918,10 @@ sub _split_url {
or croak(qq/Could not binmode() socket: '$!'/);
if ( $scheme eq 'https') {
IO::Socket::SSL->start_SSL($self->{fh});
IO::Socket::SSL->start_SSL(
$self->{fh},
SSL_verifycn_name => $host,
);
ref($self->{fh}) eq 'IO::Socket::SSL'
or die(qq/SSL connection failed for $host\n/);
if ( $self->{fh}->can("verify_hostname") ) {
@@ -4793,6 +4796,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION
pt-fk-error-logger 3.5.7
pt-fk-error-logger 3.6.0
=cut