(plugin) hardware::server::dell::vxm::restapi - add default curl backend (#3801)

This commit is contained in:
qgarnier 2022-08-02 14:58:40 +02:00 committed by GitHub
parent c9afe47aa9
commit 7300b0e439
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ sub new {
$options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1);
$self->{output} = $options{output}; $self->{output} = $options{output};
$self->{http} = centreon::plugins::http->new(%options); $self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl');
return $self; return $self;
} }