You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would you like to have a go at submitting a Pull Request for fixing this issue?
If you need any help on the process, our Open Source Playbook might be of some help.
Please let me know if there's anything else you need.
@OverRide
public void sendAccountAnswer(RfAccountingAnswer accountAnswer) throws InternalException, IllegalStateException, RouteException, OverloadException {
try {
session.send(accountAnswer.getMessage());
/* TODO: Need to notify state change...
if (isStateless() && isValid()) {
session.release();
}
*/
}
catch (IllegalDiameterStateException e) {
throw new IllegalStateException(e);
}
}
After sending the answer, the sessions never gets released (beacuse its commented) and it causes memory leak in the long run.
The text was updated successfully, but these errors were encountered: