Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Increase timeout for CI Integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Stummi committed May 16, 2022
1 parent c237f84 commit 4232b7c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void testMultipleSchedulers() throws Exception {
scheduler.getListenerManager().addTriggerListener(new CompleteListener(waiter), NameMatcher.triggerNameEquals(triggerName));
scheduler.scheduleJob(job, trigger);

waiter.await(1500);
waiter.await(3000);

try (Jedis jedis = jedisPool.getResource()) {
assertThat(jedis.get(KEY_ID), equalTo(scheduler.getSchedulerInstanceId()));
Expand All @@ -108,7 +108,7 @@ public void testMultipleSchedulers() throws Exception {
}
scheduler2.start();

waiter.await(1500);
waiter.await(3000);

try (Jedis jedis = jedisPool.getResource()) {
assertThat(jedis.get(KEY_ID), equalTo(scheduler2.getSchedulerInstanceId()));
Expand Down

0 comments on commit 4232b7c

Please sign in to comment.