You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2021. It is now read-only.
I have a C# producer producing messages. The messages are streamed to a Mule ZeroMQ consumer.
Ran into the error below right after processing of 17th messages (always).
Caused by: java.lang.NullPointerException
at org.mule.transport.zmq.ZMQTransport$InboundWorker.run(ZMQTransport.java:374)
at org.mule.work.WorkerContext.run(WorkerContext.java:311)
... 10 more
To get around, changed line 373 on org.mule.transport.zmq.ZMQTransportto check for workerSocket null. It worked!
if (workerSocket != null) workerSocket.close();
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a C# producer producing messages. The messages are streamed to a Mule ZeroMQ consumer.
Ran into the error below right after processing of 17th messages (always).
Caused by: java.lang.NullPointerException
at org.mule.transport.zmq.ZMQTransport$InboundWorker.run(ZMQTransport.java:374)
at org.mule.work.WorkerContext.run(WorkerContext.java:311)
... 10 more
To get around, changed line 373 on org.mule.transport.zmq.ZMQTransportto check for workerSocket null. It worked!
if (workerSocket != null) workerSocket.close();
The text was updated successfully, but these errors were encountered: