tirsen / activemessaging

ActiveMessaging is an attempt to bring the simplicity and elegance of Rails development to the world of messaging. Messaging, (or event-driven architecture) is widely used for enterprise integration, with frameworks such as Java's JMS, and products such as ActiveMQ, Tibco, IBM MQSeries etc
0 stars 0 forks source link

Incorrect Message size in asqs.rb #35

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The asqs adapter (asqs.rb) has the incorrect message size constant.  The 
current version 2008-1-1 
(for which the adapter is defaulting to) now has an 8k message size limit, not 
256k.

asqs.rb
Line 18:
MESSAGE_SIZE = 1..(256 * 1024)

Probably should be
MESSAGE_SIZE = 1..(8 * 1024)

Original issue reported on code.google.com by chrisabr...@gmail.com on 11 Jul 2008 at 3:51

GoogleCodeExporter commented 9 years ago
This is fixed.

Original comment by kooks...@gmail.com on 5 Apr 2010 at 7:28