Skip to content

Commit

Permalink
Merge pull request #154 from mohanvive/master
Browse files Browse the repository at this point in the history
Reduce the probability of intermittent test failure
  • Loading branch information
pcnfernando authored Oct 21, 2019
2 parents 8f7486c + b2da09c commit e85e086
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
public class HttpCustomConfigTestCase {
private static final Logger logger = Logger.getLogger(HttpCustomConfigTestCase.class);
private AtomicInteger eventCount = new AtomicInteger(0);
private int waitTime = 50;
private int waitTime = 500;
private int timeout = 30000;

@BeforeMethod
Expand Down Expand Up @@ -260,6 +260,8 @@ public void run() {
}
};
thread1.start();
Thread.sleep(5000);

Thread thread3 = new Thread() {
public void run() {
HttpTestUtil.httpPublishEvent(event1, baseURI, "/endpoints/RecPro",
Expand Down

0 comments on commit e85e086

Please sign in to comment.