-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
GetWatchResponseTests failing when running jdk11 #38400
Labels
Comments
pgomulka
added
>test-failure
Triaged test failures from CI
:Data Management/Watcher
labels
Feb 5, 2019
Pinging @elastic/es-core-features |
very similar problem to what I did here.. |
pgomulka
added a commit
to pgomulka/elasticsearch
that referenced
this issue
Feb 5, 2019
the clock resolution changed from jdk8->jdk10, hence the test is passing in jdk8 but failing in jdk10. The Watcher's objects are serialised and deserialised with milliseconds precision, making test to fail in jdk 10 and higher closes elastic#38400
can we mute this test if we are not going to merge the corresponding PR straight-away? |
pgomulka
added a commit
that referenced
this issue
Feb 5, 2019
the clock resolution changed from jdk8->jdk10, hence the test is passing in jdk8 but failing in jdk10. The Watcher's objects are serialised and deserialised with milliseconds precision, making test to fail in jdk 10 and higher closes #38400
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The test is passing when running under jdk8 but failing under jdk10 & 11
failing:
working
The resolution of SystemClock was changed from jdk8 - jdk11
The jdk is vauge about this:
JDK8 SystemClock from Clock.java
jdk11 SystemClock.instant from Clock.java
The text was updated successfully, but these errors were encountered: