From 561cfbf91a10fdfcbae64dad8c8bc098c513d18b Mon Sep 17 00:00:00 2001 From: Sahina Bose Date: Wed, 10 Jun 2015 19:36:06 +0530 Subject: 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 Reviewed-on: http://review.gluster.org/11163 Reviewed-by: Ramesh N Reviewed-by: Shubhendu Tripathi --- plugins/check_volume_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit