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
Original issue reported on code.google.com by
chrisabr...@gmail.com
on 11 Jul 2008 at 3:51