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
I'm testing a few payloads with krossbow STOMP client, and received an error on a SUBSCRIBE frame with content-length: 0 header:
13:03:45 [vert.x-eventloop-thread-1] ERROR io.vertx.core.impl.ContextBase - Unhandled exception
java.lang.IllegalArgumentException: Size must be > 0
at io.vertx.core.impl.Arguments.require(Arguments.java:29)
at io.vertx.core.parsetools.impl.RecordParserImpl.fixedSizeMode(RecordParserImpl.java:156)
at io.vertx.ext.stomp.impl.FrameParser.handleLine(FrameParser.java:113)
at io.vertx.core.parsetools.impl.RecordParserImpl.handleParsing(RecordParserImpl.java:214)
The STOMP specification does not prohibit 0 values as far as I can see, so would be good to not enforce it.
(Note that the same client was previously used with a Spring Boot implementation with no issue).
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
I'm testing a few payloads with krossbow STOMP client, and received an error on a SUBSCRIBE frame with content-length: 0 header:
The STOMP specification does not prohibit 0 values as far as I can see, so would be good to not enforce it.
(Note that the same client was previously used with a Spring Boot implementation with no issue).
Thanks
The text was updated successfully, but these errors were encountered: