Skip to content

Commit

Permalink
ISPN-2207 Increase the state transfer timeout in BaseReplicatedAPITest
Browse files Browse the repository at this point in the history
Since we run many tests in parallel, 1 second is sometimes not enough.
  • Loading branch information
danberindei authored and tristantarrant committed Aug 20, 2012
1 parent 26b1e4a commit 72712db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public abstract class BaseReplicatedAPITest extends MultipleCacheManagersTest {

protected void createCacheManagers() throws Throwable {
Configuration c = getDefaultClusteredConfig(isSync ? Configuration.CacheMode.REPL_SYNC : Configuration.CacheMode.REPL_ASYNC, true);
c.setStateRetrievalTimeout(1000);
c.setStateRetrievalTimeout(5000);
createClusteredCaches(2, "replication", c);
}

Expand Down

0 comments on commit 72712db

Please sign in to comment.