mirror of https://github.com/apache/activemq.git
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:
parent
8ec1347e30
commit
516558698a
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue