From 3b0e2ddd0a3e2ef5f5006f53f9c90a0c0fd65129 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Tue, 24 Feb 2026 15:23:15 +0100 Subject: [PATCH] libutil: don't report DecompressionStream shutdown errors we already report errors that happen during reads via exceptions rethrown from read. reporting errors during destruction too is a source of confusion for users since these errors are not usually relevant and just the decompressor thread reporting short reads. shorts reads during shutdown are not an error, they're expected. fixes #1138 Change-Id: I7983ef0ed7722460f1d683bc8171a454b3d06e90 --- lix/libutil/compression.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/lix/libutil/compression.cc b/lix/libutil/compression.cc index 3050ca8e2..b4f9b558f 100644 --- a/lix/libutil/compression.cc +++ b/lix/libutil/compression.cc @@ -369,7 +369,6 @@ struct DecompressionStream : DecompressorPipes, AsyncInputStream try { thread.get(); } catch (...) { - ignoreExceptionInDestructor(); } } }