Refs #6339 - Change name of indices and nodescount file

This commit is contained in:
Mathieu Cinquin 2015-04-16 15:45:31 +02:00
parent 352b24aeef
commit d55c91b415
3 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ sub new {
$self->{version} = '0.1'; $self->{version} = '0.1';
%{$self->{modes}} = ( %{$self->{modes}} = (
'cluster' => 'apps::elasticsearch::mode::cluster', 'cluster' => 'apps::elasticsearch::mode::cluster',
'nodecount' => 'apps::elasticsearch::mode::nodecount', 'nodescount' => 'apps::elasticsearch::mode::nodescount',
'indice' => 'apps::elasticsearch::mode::indice', 'indices' => 'apps::elasticsearch::mode::indices',
); );
return $self; return $self;
} }