From 174b341bef701d1f9ce4df7526101d913a4f8d55 Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 15 Jul 2021 10:31:28 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20report=20HTTPRepo=20removeChild?= =?UTF-8?q?=20failures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sentry-Id: FLIGHTGEAR-E5T --- simgear/io/HTTPRepository.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/io/HTTPRepository.cxx b/simgear/io/HTTPRepository.cxx index f26301c0..cdff27e5 100644 --- a/simgear/io/HTTPRepository.cxx +++ b/simgear/io/HTTPRepository.cxx @@ -774,7 +774,7 @@ private: if (!ok) { SG_LOG(SG_TERRASYNC, SG_WARN, "removal failed for:" << path); - throw sg_io_exception("Failed to remove existing file/dir:", path); + throw sg_io_exception("Failed to remove existing file/dir:", path, false); } }