commit | 748ca07abb876c5a5956a30275618e46f4003fb0 | [log] [tgz] |
---|---|---|
author | David K. Bainbridge <dbainbri@ciena.com> | Fri Feb 01 11:47:29 2019 -0800 |
committer | Andrea Campanella <andrea@opennetworking.org> | Mon Feb 04 10:24:53 2019 +0100 |
tree | 7b98997761611a537bc00f5c7e479e70042addd1 | |
parent | 81c3fa23a04cd4838f9547a44f740f5a0e9cc86f [diff] |
ONOS-7918 yes, release the reference to the reply Change-Id: I7428cfb93c6cf0e64ee6f6504121fe706f4dd4f8
diff --git a/protocols/netconf/ctl/src/main/java/org/onosproject/netconf/ctl/impl/NetconfSessionMinaImpl.java b/protocols/netconf/ctl/src/main/java/org/onosproject/netconf/ctl/impl/NetconfSessionMinaImpl.java index e73a4c6..03b20e3 100644 --- a/protocols/netconf/ctl/src/main/java/org/onosproject/netconf/ctl/impl/NetconfSessionMinaImpl.java +++ b/protocols/netconf/ctl/src/main/java/org/onosproject/netconf/ctl/impl/NetconfSessionMinaImpl.java
@@ -841,8 +841,8 @@ event.getDeviceInfo(), event.getMessagePayload()); return; } - CompletableFuture<String> completedReply = - replies.get(messageId.get()); // remove(..)? + // Remove the message as it has been processed. + CompletableFuture<String> completedReply = replies.remove(messageId.get()); if (completedReply != null) { completedReply.complete(event.getMessagePayload()); }