You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by es...@apache.org on 2019/08/15 20:57:55 UTC

[geode] branch feature/GEODE-6613 created (now 667b836)

This is an automated email from the ASF dual-hosted git repository.

eshu11 pushed a change to branch feature/GEODE-6613
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at 667b836  GEODE-6613: Do not set TransactionTimeout in the test.

This branch includes the following new commits:

     new 667b836  GEODE-6613: Do not set TransactionTimeout in the test.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode] 01/01: GEODE-6613: Do not set TransactionTimeout in the test.

Posted by es...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

eshu11 pushed a commit to branch feature/GEODE-6613
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 667b836ae1dbd81536dbad20d1ca3ad1111bcc87
Author: eshu <es...@pivotal.io>
AuthorDate: Thu Aug 15 13:56:13 2019 -0700

    GEODE-6613: Do not set TransactionTimeout in the test.
---
 .../internal/cache/ClientServerTransactionFailoverDistributedTest.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/ClientServerTransactionFailoverDistributedTest.java b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/ClientServerTransactionFailoverDistributedTest.java
index 031d2a1..e73a43d 100644
--- a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/ClientServerTransactionFailoverDistributedTest.java
+++ b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/ClientServerTransactionFailoverDistributedTest.java
@@ -136,9 +136,6 @@ public class ClientServerTransactionFailoverDistributedTest implements Serializa
     cacheRule.getOrCreateCache().createRegionFactory(RegionShortcut.PARTITION)
         .setPartitionAttributes(partitionAttributes).create(regionName);
 
-    TXManagerImpl txManager = cacheRule.getCache().getTxManager();
-    txManager.setTransactionTimeToLiveForTest(4);
-
     CacheServer server = cacheRule.getCache().addCacheServer();
     server.setPort(0);
     server.start();