diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 20:54:13 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-07-08 20:54:13 +0100 |
commit | 255c0e5a043d9f36c5ed0d2cb9b61950f2642f6c (patch) | |
tree | bcbb509ede20c03ddcc1d5734e3e073009db149f | |
parent | 3d3784c9c2e01e18fcc0a2f83dc7b55d1607235b (diff) | |
download | sos-255c0e5a043d9f36c5ed0d2cb9b61950f2642f6c.tar.gz |
[gluster] log killall failures at info level
Failing to send a signal to the gluster daemons will happen on
any system with gluster installed but not running; don't log it
at warning level.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/gluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/gluster.py b/sos/plugins/gluster.py index 795dfa0a..538e1b27 100644 --- a/sos/plugins/gluster.py +++ b/sos/plugins/gluster.py @@ -101,7 +101,7 @@ class Gluster(Plugin, RedHatPlugin): self.add_copy_spec('/tmp/glusterdump.options') self.add_copy_spec(self.statedump_dir) else: - self.soslog.warning("could not send SIGUSR1 to glusterfs processes") + self.soslog.info("could not send SIGUSR1 to glusterfs processes") volume_file = self.get_cmd_output_now("gluster volume info", "gluster_volume_info") |