Abdulrazak-Alkl / activemessaging

Automatically exported from code.google.com/p/activemessaging
0 stars 0 forks source link

Incorrect Message size in asqs.rb #35

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 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 8 years ago
This is fixed.

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