From 473627e1c9fcdf8f819ced2bb79cb7e9ff598b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 12 Oct 2021 19:46:25 +0200 Subject: [PATCH] coredumpctl: stop truncating information about coredump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the changes to limit that print 'Found module …' over and over, we were hitting the journal field message limit, effectively truncating the info output. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1998488. (cherry picked from commit 384c6207669eb0d92aa0043dbc01957c6c7ff41e) --- src/coredump/coredumpctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coredump/coredumpctl.c b/src/coredump/coredumpctl.c index 3d44e51e32..7eba8330d7 100644 --- a/src/coredump/coredumpctl.c +++ b/src/coredump/coredumpctl.c @@ -555,6 +555,8 @@ static int print_info(FILE *file, sd_journal *j, bool need_space) { assert(file); assert(j); + (void) sd_journal_set_data_threshold(j, 0); + SD_JOURNAL_FOREACH_DATA(j, d, l) { RETRIEVE(d, l, "MESSAGE_ID", mid); RETRIEVE(d, l, "COREDUMP_PID", pid);