https://issues.apache.org/bugzilla/show_bug.cgi?id=47949

--- Comment #1 from Bob Yetman <boby...@gmail.com> 2009-11-03 05:49:18 UTC ---
I've seen something similar, where the JMS SubscriberSampler will take multiple
messages and combine them into a single message, which will make the counts
lower then what you expect.    It's due to the while (this.count(0) < loop) {
Thread.sleep } loops in the sampleWithListener() and SampleWithReceive()
methods.  If multiple messages come in during the Thread.sleep() time periods,
they will be aggregated into a single buffer, and returned as a single message.
 In my case, it's causing some XPath Assertions to fail.

I've debated re-writing these methods to use an array of buffers to received
the messages, just haven't had the time yet to code and test it.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org

Reply via email to