You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2021/01/04 16:12:29 UTC

[accumulo] branch main updated: Re #1841 Add timeout to ConcurrentDeleteTableIT

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 dd637c3  Re #1841 Add timeout to ConcurrentDeleteTableIT
dd637c3 is described below

commit dd637c350b388e31aadad85f3616f6f0a1d07272
Author: Dom G <47...@users.noreply.github.com>
AuthorDate: Mon Jan 4 11:12:20 2021 -0500

    Re #1841 Add timeout to ConcurrentDeleteTableIT
    
    * added a default 7min timeout
---
 .../org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/src/main/java/org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java b/test/src/main/java/org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java
index ab16085..0d489fe 100644
--- a/test/src/main/java/org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java
@@ -52,6 +52,11 @@ import org.junit.Test;
 
 public class ConcurrentDeleteTableIT extends AccumuloClusterHarness {
 
+  @Override
+  protected int defaultTimeoutSeconds() {
+    return 7 * 60;
+  }
+
   @Test
   public void testConcurrentDeleteTablesOps() throws Exception {
     try (AccumuloClient c = Accumulo.newClient().from(getClientProps()).build()) {