Merge pull request #3170 from gtully/ARTEMIS-2788

ARTEMIS-2788 clear openwire producer exchange, created on send, on pr…
This commit is contained in:
Gary Tully 2020-06-05 10:38:46 +01:00 committed by GitHub
commit d0eabde447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1211,6 +1211,9 @@ public class OpenWireConnection extends AbstractRemotingConnection implements Se
ss.removeProducer(id);
}
}
synchronized (producerExchanges) {
producerExchanges.remove(id);
}
return null;
}