From 2db755a4c50e3ee320977b6fa2f1a55402675be5 Mon Sep 17 00:00:00 2001 From: David Li Date: Fri, 21 Oct 2022 20:29:50 -0400 Subject: [PATCH] MINOR: [Release] Add seccomp=undefined to APT verification Needed to avoid 'Failed to close file descriptor for child process'. The other Docker invocations already have it, but not this one. --- dev/release/verify-release-candidate.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index a9681af5287d..746fee97172d 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -213,6 +213,7 @@ test_apt() { ;; esac if ! docker run --rm -v "${ARROW_DIR}":/arrow:delegated \ + --security-opt="seccomp=unconfined" \ "${target}" \ /arrow/dev/release/verify-apt.sh \ "${VERSION}" \