Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 75603200C28 for ; Mon, 13 Mar 2017 23:13:31 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 73F53160B6C; Mon, 13 Mar 2017 22:13:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BA3F2160B5D for ; Mon, 13 Mar 2017 23:13:30 +0100 (CET) Received: (qmail 16334 invoked by uid 500); 13 Mar 2017 22:13:29 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 16325 invoked by uid 99); 13 Mar 2017 22:13:29 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Mar 2017 22:13:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C3C4BDFBD9; Mon, 13 Mar 2017 22:13:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kduling@apache.org To: commits@geode.apache.org Message-Id: <2bc770d6f55c4669a824fa2fa5b5236b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: geode git commit: GEODE-2633: When turning on fine logging, GEODE logs the keystore password in clear text * spotless fix Date: Mon, 13 Mar 2017 22:13:29 +0000 (UTC) archived-at: Mon, 13 Mar 2017 22:13:31 -0000 Repository: geode Updated Branches: refs/heads/develop ffa84b13b -> aa922bf64 GEODE-2633: When turning on fine logging, GEODE logs the keystore password in clear text * spotless fix Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/aa922bf6 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/aa922bf6 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/aa922bf6 Branch: refs/heads/develop Commit: aa922bf6446887027ae956f3ff82964df2a2b5d5 Parents: ffa84b1 Author: Kevin J. Duling Authored: Mon Mar 13 15:12:31 2017 -0700 Committer: Kevin J. Duling Committed: Mon Mar 13 15:12:31 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/geode/internal/util/ArgumentRedactor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/aa922bf6/geode-core/src/main/java/org/apache/geode/internal/util/ArgumentRedactor.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/internal/util/ArgumentRedactor.java b/geode-core/src/main/java/org/apache/geode/internal/util/ArgumentRedactor.java index 8873a52..df82dff 100644 --- a/geode-core/src/main/java/org/apache/geode/internal/util/ArgumentRedactor.java +++ b/geode-core/src/main/java/org/apache/geode/internal/util/ArgumentRedactor.java @@ -63,8 +63,8 @@ public class ArgumentRedactor { /** * Parse a string to find key=value pairs and redact the values if necessary. If more than one - * key=value pair exists in the input, each pair must be preceded by a hyphen '-' to delineate - * the pairs.
+ * key=value pair exists in the input, each pair must be preceded by a hyphen '-' to delineate the + * pairs.
* Example:
* Single value: "password=secret" or "--password=secret" Multiple values: "-Dflag -Dkey=value * --classpath=."