From commits-return-22917-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Tue May 28 22:27:54 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 B660C18060F for ; Wed, 29 May 2019 00:27:53 +0200 (CEST) Received: (qmail 3606 invoked by uid 500); 28 May 2019 22:27:52 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 3593 invoked by uid 99); 28 May 2019 22:27:52 -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; Tue, 28 May 2019 22:27:52 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B14BC8A136; Tue, 28 May 2019 22:27:52 +0000 (UTC) Date: Tue, 28 May 2019 22:27:52 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch 2.0 updated: Fix #886 Deprecate general.dynamic.classpaths (#1166) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155908247260.18121.15260797216291580057@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/2.0 X-Git-Reftype: branch X-Git-Oldrev: 21c6a0e489225f3206be19c92fe0c1904cb7825c X-Git-Newrev: 87d48ef2f5f54f3b8e675332ebe60d3a75b1bed3 X-Git-Rev: 87d48ef2f5f54f3b8e675332ebe60d3a75b1bed3 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. ctubbsii pushed a commit to branch 2.0 in repository https://gitbox.apache.org/repos/asf/accumulo.git The following commit(s) were added to refs/heads/2.0 by this push: new 87d48ef Fix #886 Deprecate general.dynamic.classpaths (#1166) 87d48ef is described below commit 87d48ef2f5f54f3b8e675332ebe60d3a75b1bed3 Author: Holly Keebler AuthorDate: Tue May 21 13:21:03 2019 -0400 Fix #886 Deprecate general.dynamic.classpaths (#1166) --- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 9520012..247a64d 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -178,10 +178,14 @@ public enum Property { GENERAL_PREFIX("general.", null, PropertyType.PREFIX, "Properties in this category affect the behavior of accumulo overall, but" + " do not have to be consistent throughout a cloud."), + @Deprecated GENERAL_DYNAMIC_CLASSPATHS(AccumuloVFSClassLoader.DYNAMIC_CLASSPATH_PROPERTY_NAME, AccumuloVFSClassLoader.DEFAULT_DYNAMIC_CLASSPATH_VALUE, PropertyType.STRING, - "A list of all of the places where changes in jars or classes will force " - + "a reload of the classloader."), + "This property is deprecated since 2.0.0. A list of all of the places where changes " + + "in jars or classes will force a reload of the classloader. Built-in dynamic class " + + "loading will be removed in a future version. If this is needed, consider overriding " + + "the Java system class loader with one that has this feature " + + "(https://docs.oracle.com/javase/8/docs/api/java/lang/ClassLoader.html#getSystemClassLoader--)."), GENERAL_RPC_TIMEOUT("general.rpc.timeout", "120s", PropertyType.TIMEDURATION, "Time to wait on I/O for simple, short RPC calls"), @Experimental