summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSahina Bose <sabose@redhat.com>2015-06-10 19:36:06 +0530
committerSahina Bose <sabose@redhat.com>2015-06-11 04:41:56 -0700
commit561cfbf91a10fdfcbae64dad8c8bc098c513d18b (patch)
treebb61a297255d7b2b27224f6ec6a989251d73f0f2 /plugins
parent3ce8475c3e3ace39696d83e45c249f22554d4602 (diff)
nagios-plugins: Corrected typo in split-brain status plugin
Corrected a typo Change-Id: I06369cbce0b7f965fe4993bea63c19b06963d105 Bug-Url: https://bugzilla.redhat.com/1228533 Signed-off-by: Sahina Bose <sabose@redhat.com> Reviewed-on: http://review.gluster.org/11163 Reviewed-by: Ramesh N <rnachimu@redhat.com> Reviewed-by: Shubhendu Tripathi <shtripat@redhat.com>
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/check_volume_status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_volume_status.py b/plugins/check_volume_status.py
index 63494ea..444c7d3 100755
--- a/plugins/check_volume_status.py
+++ b/plugins/check_volume_status.py
@@ -90,7 +90,7 @@ def getVolumeSelfHealSplitBrainStatus(args):
out = ("UNKNOWN: Glusterd cannot be queried. %s" % '.'.join(e.err))
return utils.PluginStatusCode.UNKNOWN, out
except glustercli.GlusterCmdFailedException as e:
- out = ("Self heal status could not be determined. %s"
+ out = ("Volume split brain status could not be determined. %s"
% '.'.join(e.err))
return utils.PluginStatusCode.WARNING, out