diff options
author | Marcelo Moreira de Mello <mmello@redhat.com> | 2017-04-07 20:21:40 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-03-13 12:42:20 +0000 |
commit | cfbf10f8701070fba5d8a58b87d59b907e1d9743 (patch) | |
tree | 9a287e3ad2ea468d4ffb80a12d46a52f6752e4ae | |
parent | 103414440ce1315fe3bf292c5f4517d1355f4528 (diff) | |
download | sos-cfbf10f8701070fba5d8a58b87d59b907e1d9743.tar.gz |
[satellite] increase timeout of spacewalk-debug to 15minutes
spacewalk-debug usually runs longer than the default 5 minutes timeout.
Fixes: #989
Signed-off-by: Marcelo Moreira de Mello <mmello@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/satellite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/satellite.py b/sos/plugins/satellite.py index c026ee62..84ad3eb3 100644 --- a/sos/plugins/satellite.py +++ b/sos/plugins/satellite.py @@ -82,7 +82,8 @@ class Satellite(Plugin, RedHatPlugin): ]) self.add_cmd_output( "spacewalk-debug --dir %s" - % self.get_cmd_output_path(name="spacewalk-debug")) + % self.get_cmd_output_path(name="spacewalk-debug"), + timeout=900) if self.proxy: self.add_copy_spec(["/etc/squid", "/var/log/squid"]) |