Skip to content

Commit

Permalink
Fix a warning in the 7.9.1 Release
Browse files Browse the repository at this point in the history
I was unable to `Dist::Zilla` to let me tag a `7.10` release, so I went
with `7.9.1`. This caused a warning in `::Connection` for formatting the
version string.
  • Loading branch information
reyjrar committed Aug 14, 2021
1 parent 84dd4b0 commit 8adedd9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CopyIndexes.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Maintenance.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ App::ElasticSearch::Utilities - Utilities for Monitoring ElasticSearch

# VERSION

version 7.9.1
version 7.9.2

# SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion Searching.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/App/ElasticSearch/Utilities/Connection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down

0 comments on commit 8adedd9

Please sign in to comment.