summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorA Codeweavers Infrastructure Bod <36475663+infraweavers@users.noreply.github.com>2020-09-14 08:52:29 (GMT)
committerA Codeweavers Infrastructure Bod <36475663+infraweavers@users.noreply.github.com>2020-09-14 08:52:29 (GMT)
commit1b5dbf6c09952a69843e08bd8943506e98bcfe1a (patch)
treee3ab9ffc9a79826f9c63b4250966cd07da1502df
parent9d1b15abb56a9d2d00ed56cabfae4d176bd1e955 (diff)
downloadmonitoring-plugin-perl-1b5dbf6c09952a69843e08bd8943506e98bcfe1a.tar.gz
Handling if only the warning or critical is setrefs/pull/23/head
-rw-r--r--lib/Monitoring/Plugin.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Monitoring/Plugin.pm b/lib/Monitoring/Plugin.pm
index 3660ba7..7a4617d 100644
--- a/lib/Monitoring/Plugin.pm
+++ b/lib/Monitoring/Plugin.pm
@@ -159,7 +159,7 @@ sub getopts {
159 $self->set_thresholds( 159 $self->set_thresholds(
160 warning => $self->opts->warning, 160 warning => $self->opts->warning,
161 critical => $self->opts->critical, 161 critical => $self->opts->critical,
162 ) if ( defined $self->opts->warning && defined $self->opts->critical ); 162 ) if ( defined $self->opts->warning || defined $self->opts->critical );
163} 163}
164 164
165sub _check_for_opts { 165sub _check_for_opts {