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 31A32200C4B for ; Mon, 6 Mar 2017 00:39:12 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 30283160B7D; Sun, 5 Mar 2017 23:39:12 +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 7B55C160B6B for ; Mon, 6 Mar 2017 00:39:11 +0100 (CET) Received: (qmail 15738 invoked by uid 500); 5 Mar 2017 23:39:10 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 15729 invoked by uid 99); 5 Mar 2017 23:39:10 -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; Sun, 05 Mar 2017 23:39:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 57E2BDFA1F; Sun, 5 Mar 2017 23:39:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: noble@apache.org To: commits@lucene.apache.org Message-Id: <37fea55d250d4407a9157f3e484fbe26@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: lucene-solr:master: SOLR-10230: default TTL of PKIAuthenticationPlugin increased to 10secs Date: Sun, 5 Mar 2017 23:39:10 +0000 (UTC) archived-at: Sun, 05 Mar 2017 23:39:12 -0000 Repository: lucene-solr Updated Branches: refs/heads/master f49bd79ec -> fb1d2d1ae SOLR-10230: default TTL of PKIAuthenticationPlugin increased to 10secs Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/fb1d2d1a Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/fb1d2d1a Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/fb1d2d1a Branch: refs/heads/master Commit: fb1d2d1ae21f04be355637cfc3b096b090583378 Parents: f49bd79 Author: Noble Paul Authored: Mon Mar 6 10:09:01 2017 +1030 Committer: Noble Paul Committed: Mon Mar 6 10:09:01 2017 +1030 ---------------------------------------------------------------------- solr/CHANGES.txt | 4 +++- .../java/org/apache/solr/security/PKIAuthenticationPlugin.java | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fb1d2d1a/solr/CHANGES.txt ---------------------------------------------------------------------- diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 5b7eac5..0b05749 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -285,7 +285,9 @@ Other Changes * SOLR-10155: For numeric types facet.contains= and facet.prefix= are now rejected. (Gus Heck, Christine Poerschke) -* SOLR-10171 Add Constant Reduction Rules to Calcite Planner (Kevin Risden) +* SOLR-10171: Add Constant Reduction Rules to Calcite Planner (Kevin Risden) + +* SOLR-10230: default TTL of PKIAuthenticationPlugin increased to 10secs (noble) ================== 6.4.2 ================== http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fb1d2d1a/solr/core/src/java/org/apache/solr/security/PKIAuthenticationPlugin.java ---------------------------------------------------------------------- diff --git a/solr/core/src/java/org/apache/solr/security/PKIAuthenticationPlugin.java b/solr/core/src/java/org/apache/solr/security/PKIAuthenticationPlugin.java index fdd4408..fcc0560 100644 --- a/solr/core/src/java/org/apache/solr/security/PKIAuthenticationPlugin.java +++ b/solr/core/src/java/org/apache/solr/security/PKIAuthenticationPlugin.java @@ -63,7 +63,7 @@ public class PKIAuthenticationPlugin extends AuthenticationPlugin implements Htt private final Map keyCache = new ConcurrentHashMap<>(); private final CryptoKeys.RSAKeyPair keyPair = new CryptoKeys.RSAKeyPair(); private final CoreContainer cores; - private final int MAX_VALIDITY = Integer.parseInt(System.getProperty("pkiauth.ttl", "5000")); + private final int MAX_VALIDITY = Integer.parseInt(System.getProperty("pkiauth.ttl", "10000")); private final String myNodeName; private final HttpHeaderClientInterceptor interceptor = new HttpHeaderClientInterceptor(); private boolean interceptorRegistered = false;