[
https://issues.apache.org/jira/browse/GEODE-2177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15727009#comment-15727009
]
Vincent Ford commented on GEODE-2177:
-------------------------------------
diff --git
a/geode-examples/replicated/src/test/java/org/apache/geode/examples/replicated/ReplicatedTest.java
b/geode-examples/replicated/src/test/java/org/apache/geode/examples/replicated/ReplicatedTest.java
index 1901221..ebcb02d 100644
---
a/geode-examples/replicated/src/test/java/org/apache/geode/examples/replicated/ReplicatedTest.java
+++
b/geode-examples/replicated/src/test/java/org/apache/geode/examples/replicated/ReplicatedTest.java
@@ -50,7 +50,7 @@ public class ReplicatedTest {
private static final String pidkillerScriptFileName = "pidkiller.sh";
private boolean processRunning = false;
private ShellUtil shell = new ShellUtil();
- private final long scriptTimeout = TimeUnit.SECONDS.toMillis(60);
+ private final long scriptTimeout = TimeUnit.SECONDS.toMillis(180);
private static final Logger logger = Logger.getAnonymousLogger();
> CI Failure: ReplicatedTest in geode-examples fails with AssertionError
> ----------------------------------------------------------------------
>
> Key: GEODE-2177
> URL: https://issues.apache.org/jira/browse/GEODE-2177
> Project: Geode
> Issue Type: Bug
> Components: core, tests
> Affects Versions: 1.0.0-incubating
> Reporter: Kirk Lund
> Labels: CI, Example
>
> The assertion on line 82 asserts that the exit code for executing the start
> script is zero.
> {noformat}
> :geode-examples:replicated:test
> org.apache.geode.examples.replicated.ReplicatedTest >
> executeStartThenStopScript FAILED
> java.lang.AssertionError at ReplicatedTest.java:82
> {noformat}
> Code:
> {noformat}
> 79 @Test
> 80 public void executeStartThenStopScript() throws InterruptedException,
> IOException {
> 81 final int exitCodeStart = executeScript(startScriptFileName);
> 82 assertEquals(0, exitCodeStart);
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)