From 3ddfe078dbad9acaf6d35aa02892a000d57ae8fb Mon Sep 17 00:00:00 2001 From: Pavel Moravec Date: Mon, 31 Oct 2016 12:06:28 +0100 Subject: [foreman] increase timeout of foreman-debug to 15minutes foreman-debug (collecting lots of log files and mainly katello task export) often runs longer than the default 5 minutes timeout. Closes: #888. Signed-off-by: Pavel Moravec --- sos/plugins/foreman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/foreman.py b/sos/plugins/foreman.py index 363b9d6a..07bbbeb6 100644 --- a/sos/plugins/foreman.py +++ b/sos/plugins/foreman.py @@ -30,6 +30,6 @@ class Foreman(Plugin, RedHatPlugin): path = self.get_cmd_output_path(name="foreman-debug") self.add_cmd_output("%s -g -q -a -d %s" % (cmd, path), - chroot=self.tmp_in_sysroot()) + chroot=self.tmp_in_sysroot(), timeout=900) # vim: set et ts=4 sw=4 : -- cgit