Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
1.3
-
None
Description
From the docs on page: http://activemq.apache.org/apollo/documentation/user-manual.html#Subscription_Flow_Control:
"If the credit header is not specified it has the same effect as if it had been set to credit:1,65536"
According to this code, it would default to credit:655360,655360:
(StompProtocolHandler.on_stomp_subscribe()):
val credit_window = get(headers, CREDIT) match {
case Some(value) =>
value.toString.split(",").toList match
case None =>
InitialCreditWindow(buffer_size, buffer_size, true)
}