Fix memory leak of OVSDB

Change-Id: Iebe692eda2af68400f19b4de40db5cd4afba802e
This commit is contained in:
tanbangcheng 2017-11-12 11:41:28 +08:00
parent 5789e1ca61
commit 1afeccea20

View File

@ -1387,6 +1387,9 @@ public class DefaultOvsdbClient implements OvsdbProviderService, OvsdbClientServ
}
String methodName = requestMethod.get(requestId);
sf.set(FromJsonUtil.jsonResultParser(response, methodName));
requestResult.remove(requestId);
requestMethod.remove(requestId);
}
@Override