[accumulo-website] branch main updated: Update Contributor list (#293)

2021-09-27 Thread mmiller
This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/main by this push:
 new 67a66cb  Update Contributor list (#293)
67a66cb is described below

commit 67a66cba3fc8f7def6d851e581d01b90b2f8ae00
Author: wx930910 
AuthorDate: Mon Sep 27 09:25:19 2021 -0400

Update Contributor list (#293)
---
 pages/people.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pages/people.md b/pages/people.md
index 5b13eab..4b693b3 100644
--- a/pages/people.md
+++ b/pages/people.md
@@ -183,6 +183,7 @@ GitHub also has a [contributor list][github-contributors] 
based on commits.
 | Vincent Russell |
   |   |
 | Volth   |
   |   |
 | Wil Selwood | [Satellite Applications Catapult][SACAT]   
   | [GMT][GMT]/[BST][BST] |
+| Xiao Wang   | [Stevens Institute of Technology][SIT] 
   | [ET][ET]  |
 
 [github-contributors]: https://github.com/apache/accumulo/graphs/contributors
 [ANAVATION]: https://www.anavationllc.com
@@ -221,6 +222,7 @@ GitHub also has a [contributor list][github-contributors] 
based on commits.
 [PRAXIS]: https://www.praxiseng.com
 [SABRE]: https://www.sabre-eng.com
 [SACAT]: https://sa.catapult.org.uk
+[SIT]: https://www.stevens.edu
 [SPLYT]: https://www.splyt.com
 [SQRRL]: http://sqrrl.com
 [SRA]: https://sra.com


[accumulo-website] branch asf-staging updated: Automatic Site Publish by Buildbot

2021-09-27 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/asf-staging by this push:
 new d8a979e  Automatic Site Publish by Buildbot
d8a979e is described below

commit d8a979ee0cd48980dfa4cf3751d064503e6051d7
Author: buildbot 
AuthorDate: Mon Sep 27 13:25:44 2021 +

Automatic Site Publish by Buildbot
---
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/output/feed.xml b/output/feed.xml
index a16e247..eaf288f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
 
 https://accumulo.apache.org/
 https://accumulo.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Wed, 04 Aug 2021 18:33:31 +
-Wed, 04 Aug 2021 18:33:31 +
+Mon, 27 Sep 2021 13:25:37 +
+Mon, 27 Sep 2021 13:25:37 +
 Jekyll v4.2.0
 
 
diff --git a/output/people/index.html b/output/people/index.html
index 7fa83a5..5f26db1 100644
--- a/output/people/index.html
+++ b/output/people/index.html
@@ -990,6 +990,11 @@ $(function() {
   https://sa.catapult.org.uk;>Satellite Applications 
Catapult
   https://www.timeanddate.com/time/zones/gmt;>GMT/https://www.timeanddate.com/time/zones/bst;>BST
 
+
+  Xiao Wang
+  https://www.stevens.edu;>Stevens Institute of 
Technology
+  https://www.timeanddate.com/time/zones/et;>ET
+
   
 
 


[accumulo-website] branch asf-site updated (60f43f3 -> d8a979e)

2021-09-27 Thread mmiller
This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git.


from 60f43f3  Automatic Site Publish by Buildbot
 add d8a979e  Automatic Site Publish by Buildbot

No new revisions were added by this update.

Summary of changes:
 output/feed.xml  | 4 ++--
 output/people/index.html | 5 +
 2 files changed, 7 insertions(+), 2 deletions(-)


[accumulo] branch main updated: Fix trivial warnings (#2291)

2021-09-27 Thread ctubbsii
This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
 new d4cb0eb  Fix trivial warnings (#2291)
d4cb0eb is described below

commit d4cb0ebacddcad11a520e87829714f3f67dc71d5
Author: Christopher Tubbs 
AuthorDate: Mon Sep 27 21:02:31 2021 -0400

Fix trivial warnings (#2291)

* Remove unused import
* Remove unused log field in test class
* Remove misleading javadoc about renamed constraint check method that
  wasn't renamed
---
 .../java/org/apache/accumulo/core/data/constraints/Constraint.java| 4 
 .../src/test/java/org/apache/accumulo/gc/GarbageCollectionTest.java   | 4 
 .../java/org/apache/accumulo/tserver/tablet/CompactableUtils.java | 1 -
 3 files changed, 9 deletions(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/data/constraints/Constraint.java 
b/core/src/main/java/org/apache/accumulo/core/data/constraints/Constraint.java
index 02068a4..5ce7840 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/data/constraints/Constraint.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/data/constraints/Constraint.java
@@ -90,10 +90,6 @@ public interface Constraint {
*
* Violation codes must be non-negative. Negative violation codes are 
reserved for system use.
*
-   * New API equivalent of
-   * {@link 
org.apache.accumulo.core.constraints.Constraint#check(org.apache.accumulo.core.constraints.Constraint.Environment,
 Mutation)}
-   * but renamed to prevent ambiguous method call errors.
-   *
* @param env
*  constraint environment
* @param mutation
diff --git 
a/server/gc/src/test/java/org/apache/accumulo/gc/GarbageCollectionTest.java 
b/server/gc/src/test/java/org/apache/accumulo/gc/GarbageCollectionTest.java
index c6736ed..ecb216f 100644
--- a/server/gc/src/test/java/org/apache/accumulo/gc/GarbageCollectionTest.java
+++ b/server/gc/src/test/java/org/apache/accumulo/gc/GarbageCollectionTest.java
@@ -39,13 +39,9 @@ import org.apache.accumulo.core.data.TableId;
 import org.apache.accumulo.server.replication.StatusUtil;
 import org.apache.accumulo.server.replication.proto.Replication.Status;
 import org.junit.Test;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public class GarbageCollectionTest {
 
-  private static final Logger log = 
LoggerFactory.getLogger(GarbageCollectionTest.class);
-
   static class TestGCE implements GarbageCollectionEnvironment {
 TreeSet candidates = new TreeSet<>();
 ArrayList blips = new ArrayList<>();
diff --git 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableUtils.java
 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableUtils.java
index c625263..742180f 100644
--- 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableUtils.java
+++ 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/CompactableUtils.java
@@ -72,7 +72,6 @@ import org.apache.accumulo.core.summary.SummaryCollection;
 import org.apache.accumulo.core.summary.SummaryReader;
 import org.apache.accumulo.core.util.Pair;
 import org.apache.accumulo.server.ServiceEnvironmentImpl;
-import org.apache.accumulo.server.compaction.CompactionInfo;
 import org.apache.accumulo.server.compaction.CompactionStats;
 import org.apache.accumulo.server.compaction.FileCompactor;
 import 
org.apache.accumulo.server.compaction.FileCompactor.CompactionCanceledException;