Skip to content

Commit

Permalink
[fix] delete read message
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrd committed Mar 9, 2023
1 parent 4dcda02 commit 488c8a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/js/service/serviceProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ module.exports = class ServiceProcess extends ServiceAdministered {
if (this._unReadResponses[uuid]) {
LOGGER.debug("Response found for uuid: " + uuid);
response = this._unReadResponses[uuid];
LOGGER.debug(response);
// On supprime la réponse de l'objet pour libérer la mémoire
delete this._unReadResponses[uuid];
LOGGER.debug(this._unReadResponses);
break;
}

Expand Down

0 comments on commit 488c8a0

Please sign in to comment.