diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2016-10-31 12:06:28 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-01-19 15:11:01 +0000 |
commit | 3ddfe078dbad9acaf6d35aa02892a000d57ae8fb (patch) | |
tree | 4930ffd087f6625c86584e9b9418db9e798f4e1f | |
parent | 5136c2743b9bd5c363a9df45767a08e1ffb424d6 (diff) | |
download | sos-3ddfe078dbad9acaf6d35aa02892a000d57ae8fb.tar.gz |
[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 <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/foreman.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 : |