summaryrefslogtreecommitdiffstats
path: root/container-disc
diff options
context:
space:
mode:
authorArne Juul <arnej@yahoo-inc.com>2018-01-30 09:01:38 +0000
committerArne Juul <arnej@yahoo-inc.com>2018-01-30 09:01:38 +0000
commit87ee40b4a1c3b11bf2294e54f74f9a5e2a940d09 (patch)
tree7e28f37dc61f7802775b2428a0ec7d2013b04466 /container-disc
parentc90710ca371546d34023470f08929b4cd73b5ff9 (diff)
need more time when run as part of parallel build
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/src/test/java/com/yahoo/container/jdisc/component/DeconstructorTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-disc/src/test/java/com/yahoo/container/jdisc/component/DeconstructorTest.java b/container-disc/src/test/java/com/yahoo/container/jdisc/component/DeconstructorTest.java
index 076f17cc2c6..ff61127f617 100644
--- a/container-disc/src/test/java/com/yahoo/container/jdisc/component/DeconstructorTest.java
+++ b/container-disc/src/test/java/com/yahoo/container/jdisc/component/DeconstructorTest.java
@@ -27,7 +27,7 @@ public class DeconstructorTest {
// Done by executor, so it takes some time even with a 0 delay.
deconstructor.deconstruct(abstractComponent);
int cnt = 0;
- while (! abstractComponent.destructed && (cnt++ < 10)) {
+ while (! abstractComponent.destructed && (cnt++ < 12000)) {
Thread.sleep(10);
}
assertTrue(abstractComponent.destructed);