diff --git a/CopyIndexes.mkdn b/CopyIndexes.mkdn index 15ec346..0e6df84 100644 --- a/CopyIndexes.mkdn +++ b/CopyIndexes.mkdn @@ -4,7 +4,7 @@ es-copy-index.pl - Copy an index from one cluster to another # VERSION -version 7.9.1 +version 7.9.2 # SYNOPSIS diff --git a/Maintenance.mkdn b/Maintenance.mkdn index 54bc7cf..1666bea 100644 --- a/Maintenance.mkdn +++ b/Maintenance.mkdn @@ -4,7 +4,7 @@ es-daily-index-maintenance.pl - Run to prune old indexes and optimize existing # VERSION -version 7.9.1 +version 7.9.2 # SYNOPSIS diff --git a/README.mkdn b/README.mkdn index d26ec72..1c572bf 100644 --- a/README.mkdn +++ b/README.mkdn @@ -4,7 +4,7 @@ App::ElasticSearch::Utilities - Utilities for Monitoring ElasticSearch # VERSION -version 7.9.1 +version 7.9.2 # SYNOPSIS diff --git a/Searching.mkdn b/Searching.mkdn index bf5d4d3..dfa3a7a 100644 --- a/Searching.mkdn +++ b/Searching.mkdn @@ -4,7 +4,7 @@ es-search.pl - Provides a CLI for quick searches of data in ElasticSearch daily # VERSION -version 7.9.1 +version 7.9.2 # SYNOPSIS diff --git a/lib/App/ElasticSearch/Utilities/Connection.pm b/lib/App/ElasticSearch/Utilities/Connection.pm index 572d3d3..809b1cd 100644 --- a/lib/App/ElasticSearch/Utilities/Connection.pm +++ b/lib/App/ElasticSearch/Utilities/Connection.pm @@ -130,7 +130,7 @@ sub _build_ua { ## use critic my $ua = LWP::UserAgent->new( keep_alive => 3, - agent => sprintf("%s/%0.1f (Perl %s)", __PACKAGE__, $local_version, $^V), + agent => sprintf("%s/%s (Perl %s)", __PACKAGE__, $local_version, $^V), protocols_allowed => [qw(http https)], timeout => $self->timeout, );