From ebdbf216918e601cc62d3f76ad6001ce3661a2dd Mon Sep 17 00:00:00 2001 From: Roman Morandell <46994680+rmorandell-pgum@users.noreply.github.com> Date: Thu, 5 Sep 2024 14:57:31 +0200 Subject: [PATCH] fix(help): HPE Primera API OPTIONS not shown in --help (#5168) --- src/storage/hp/primera/restapi/custom/api.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/hp/primera/restapi/custom/api.pm b/src/storage/hp/primera/restapi/custom/api.pm index bbb67be91..0f22f34b9 100644 --- a/src/storage/hp/primera/restapi/custom/api.pm +++ b/src/storage/hp/primera/restapi/custom/api.pm @@ -54,7 +54,7 @@ sub new { 'critical-http-status:s' => { name => 'critical_http_status' } }); } - $options{options}->add_help(package => __PACKAGE__, sections => 'HPE PRIMERA API OPTIONS', once => 1); + $options{options}->add_help(package => __PACKAGE__, sections => 'HPE Primera API OPTIONS', once => 1); $self->{output} = $options{output}; $self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl');