https://issues.apache.org/jira/browse/AMQ-3383 - fix regression in org.apache.activemq.transport.failover.FailoverTransactionTest#testFailoverSendReplyLost, : being appended to the id to match input so a get for producer id on the audit will work

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1153857 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-08-04 12:08:21 +00:00
parent 8ec1347e30
commit 516558698a
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ public class ActiveMQMessageAuditNoSync implements Serializable {
public long getLastSeqId(ProducerId id) {
long result = -1;
BitArrayBin bab = map.get(id.toString() + ":");
BitArrayBin bab = map.get(id.toString());
if (bab != null) {
result = bab.getLastSetIndex();
}