Skip to content

Commit 23f46d1

Browse files
arif-alipmoravec
authored andcommitted
[tests] Increase the limit on check for journal size
Closes: #3853 Signed-off-by: Arif Ali <arif-ali@ubuntu.com>
1 parent 9099ca6 commit 23f46d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tests/report_tests/plugin_tests

tests/report_tests/plugin_tests/logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def pre_sos_setup(self):
5454
from systemd import journal # pylint: disable=import-error
5555
_reader = journal.Reader()
5656
_size = _reader.get_usage() / 1024 / 1024
57-
if _size > 30:
57+
if _size > 40:
5858
return
5959
# write 20MB at a time to side-step rate/size limiting on some distros
6060
# write over 20MB to ensure we will actually size limit inside sos,

0 commit comments

Comments
 (0)