From commits-return-1353-archive-asf-public=cust-asf.ponee.io@yetus.apache.org Thu May 23 18:19:17 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 1017718076D for ; Thu, 23 May 2019 20:19:16 +0200 (CEST) Received: (qmail 18063 invoked by uid 500); 23 May 2019 18:19:16 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 18054 invoked by uid 99); 23 May 2019 18:19:16 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 May 2019 18:19:16 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 4005F85DAD; Thu, 23 May 2019 18:19:16 +0000 (UTC) Date: Thu, 23 May 2019 18:19:16 +0000 To: "commits@yetus.apache.org" Subject: [yetus] branch master updated: YETUS-890. revive plugin is leaking data (#61) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155863555618.2249.14925093065409637533@gitbox.apache.org> From: aw@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: yetus X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: c5697311c20ba3b98897712ae7cb9edecff31aa5 X-Git-Newrev: b4f147a3e294a649607a0204bcb98cd4aee91ddd X-Git-Rev: b4f147a3e294a649607a0204bcb98cd4aee91ddd X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/yetus.git The following commit(s) were added to refs/heads/master by this push: new b4f147a YETUS-890. revive plugin is leaking data (#61) b4f147a is described below commit b4f147a3e294a649607a0204bcb98cd4aee91ddd Author: Allen Wittenauer AuthorDate: Thu May 23 11:19:11 2019 -0700 YETUS-890. revive plugin is leaking data (#61) --- precommit/src/main/shell/test-patch.d/revive.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/precommit/src/main/shell/test-patch.d/revive.sh b/precommit/src/main/shell/test-patch.d/revive.sh index 5486123..4c5ef95 100755 --- a/precommit/src/main/shell/test-patch.d/revive.sh +++ b/precommit/src/main/shell/test-patch.d/revive.sh @@ -77,7 +77,7 @@ function revive_exec for i in "${CHANGED_FILES[@]}"; do if [[ ${i} =~ \.go$ && -f ${i} ]]; then - "${REVIVE}" "${args[@]}" "${i}" | sort -t : -k1,1 -k2,2n -k3,3n >> "${PATCH_DIR}/${repostatus}-revive-result.txt" + "${REVIVE}" "${args[@]}" "${i}" 2>&1 | sort -t : -k1,1 -k2,2n -k3,3n -k 4 >> "${PATCH_DIR}/${repostatus}-revive-result.txt" fi done