On the last 30 days I’ve encountered this error twice on Hotspot.
java.io.EOFException
at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2570)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1314)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368)
at xy.wZV(Unknown Source)
at xy.run(Unknown Source)
at java.lang.Thread.run(Thread.java:679)
Any idea on how to replicate the error?
And if there are there any fellow programmers/traders who have experienced this same error I would appreciate some input. Thanks.
It looks like your
ObjectInputStreamfound end-of-file in the middle of reading an object. Where is thisObjectInputStreamfrom? Maybe the file got truncated, or the connection got closed prematurely?