prepare version 3.1.1

This commit is contained in:
garnier-quentin 2020-02-20 13:42:17 +01:00
parent c5f79b2b7e
commit ba6bcf1533
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2020-02-20 Quentin Garnier <qgarnier@centreon.com> - 3.1.1
* Fix: discovery folders management
* Fix: no virtual machines running for 'datastore-vm'
* Fix: undefined error for 'thinprovisioning-vm'
2019-08-27 Quentin Garnier <qgarnier@centreon.com> - 3.1.0
* Enhancement: add 'status-cluster' and 'vsan-cluster-usage'
* Fix: Can listen only on localhost (issue #81)

View File

@ -54,7 +54,7 @@ BEGIN {
use base qw(centreon::vmware::script);
use vars qw(%centreon_vmware_config);
my $VERSION = "3.1.0";
my $VERSION = '3.1.1';
my %handlers = (TERM => {}, HUP => {}, CHLD => {});
my @load_modules = (

View File

@ -45,7 +45,7 @@ sub init_response {
my (%options) = @_;
$manager_response->{code} = 0;
$manager_response->{vmware_connector_version} = '3.1.0';
$manager_response->{vmware_connector_version} = '3.1.1';
$manager_response->{short_message} = 'OK';
$manager_response->{extra_message} = '';
$manager_response->{identity} = $options{identity} if (defined($options{identity}));