Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[rcptt-dev] RCPTT bug report

The following is a RCPTT issue: A NPE is occurring and from reading this link https://knpcode.com/java/concurrency/linkedblockingqueue-java-concurrency/, RCPTT is possibly sending a null element to the LinkedBlockingQueue. From Link: LinkedBlockingQueue does not allow null elements. It throws NullPointerException on attempts to add, put or offer a null.

!ENTRY org.eclipse.rcptt.ecl.core 4 0 2020-10-16 08:42:47.667
!MESSAGE
!STACK 0
java.lang.NullPointerException
at java.base/java.util.concurrent.LinkedBlockingQueue.put(LinkedBlockingQueue.java:325)
at org.eclipse.rcptt.ecl.internal.core.Pipe.write(Pipe.java:77)
at org.eclipse.rcptt.ecl.internal.core.GetValService.service(GetValService.java:46)
at org.eclipse.rcptt.ecl.internal.core.AbstractSession.internalDoExecute(AbstractSession.java:83)


Back to the top