Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ReplicatedMapEntryListenerOnReconnectTest.testListenersSmartRouting #7022

Closed
hasancelik opened this issue Dec 8, 2015 · 4 comments
Closed
Milestone

Comments

@hasancelik
Copy link
Contributor

org.junit.runners.model.TestTimedOutException: test timed out after 120000 milliseconds
    at java.lang.Thread.sleep(Native Method)
    at java.lang.Thread.sleep(Thread.java:321)
    at java.util.concurrent.TimeUnit.sleep(TimeUnit.java:356)
    at com.hazelcast.test.HazelcastTestSupport.sleepMillis(HazelcastTestSupport.java:254)
    at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:843)
    at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:849)
    at com.hazelcast.client.listeners.AbstractListenersOnReconnectTest.testListenersInternal(AbstractListenersOnReconnectTest.java:72)
    at com.hazelcast.client.listeners.AbstractListenersOnReconnectTest.testListenersSmartRouting(AbstractListenersOnReconnectTest.java:108)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:622)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
    at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
    at java.util.concurrent.FutureTask.run(FutureTask.java:166)
    at java.lang.Thread.run(Thread.java:701)

https://hazelcast-l337.ci.cloudbees.com/view/Hazelcast/job/Hazelcast-3.x-ZuluJDK6/com.hazelcast$hazelcast-client-legacy/43/testReport/junit/com.hazelcast.client.listeners/ReplicatedMapEntryListenerOnReconnectTest/testListenersSmartRouting/

@hasancelik hasancelik added this to the 3.6 milestone Dec 8, 2015
ihsandemir added a commit to ihsandemir/hazelcast that referenced this issue Dec 11, 2015
…non producable issue hazelcast#7022 . In the future failures, we can use this log for problem identification.
@ihsandemir ihsandemir self-assigned this Dec 15, 2015
@ihsandemir
Copy link
Contributor

Examined the issue. Could not generate it locally in CentOs Linux ZuluJDK6. Inserted a debug log into the test code (#7053 ) so that the next time the test fails, we will have some idea about what caused the failure.

ihsandemir added a commit to ihsandemir/hazelcast that referenced this issue Dec 15, 2015
…non producable issue hazelcast#7022 . In the future failures, we can use this log for problem identification.
@Donnerbart
Copy link
Contributor

Test failed again in a fast PR builder:

org.junit.runners.model.TestTimedOutException: test timed out after 120000 milliseconds
    at java.lang.Thread.sleep(Native Method)
    at java.lang.Thread.sleep(Thread.java:302)
    at java.util.concurrent.TimeUnit.sleep(TimeUnit.java:328)
    at com.hazelcast.test.HazelcastTestSupport.sleepMillis(HazelcastTestSupport.java:297)
    at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:909)
    at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:915)
    at com.hazelcast.client.listeners.AbstractListenersOnReconnectTest.testListenersInternal(AbstractListenersOnReconnectTest.java:61)
    at com.hazelcast.client.listeners.AbstractListenersOnReconnectTest.testListenersNonSmartRoutingMultipleServer(AbstractListenersOnReconnectTest.java:131)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:88)
    at com.hazelcast.test.FailOnTimeoutStatement$CallableStatement.call(FailOnTimeoutStatement.java:82)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at java.lang.Thread.run(Thread.java:662)

https://hazelcast-l337.ci.cloudbees.com/job/new-lab-fast-pr/3985/testReport/junit/com.hazelcast.client.listeners/ReplicatedMapEntryListenerOnReconnectTest/testListenersNonSmartRoutingMultipleServer/

@Donnerbart Donnerbart reopened this Jul 28, 2016
@jerrinot jerrinot modified the milestones: 3.7, 3.6 Jul 28, 2016
@mdogan
Copy link
Contributor

mdogan commented Jul 29, 2016

I've removed 120 seconds test timeout : d6b2a50
There's already a global timeout and assertTrueEventually also has 120s timeout by default.

Let's see if it's gonna fail again...

@degerhz degerhz modified the milestones: 3.7.1, 3.7 Jul 29, 2016
@ihsandemir
Copy link
Contributor

Could not generate the problem.

PR #8765 and #8757 may have corrected the problem. Closing for now.

@mmedenjak mmedenjak added the Source: Internal PR or issue was opened by an employee label Jan 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants