-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(iot-dev): Fix SDK leaking apache qpid objects after unregistering…
… a device (#1501) #1478 The reactor instance still held onto the last scheduled SAS token renewal task for an unregistered device when it needed to be cancelled, and the sessions and links needed to be free'd after they were closed.
- Loading branch information
1 parent
0dd8b24
commit 801f3c8
Showing
4 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -569,5 +569,7 @@ private void clearHandlers() | |
childrenIterator.next(); | ||
childrenIterator.remove(); | ||
} | ||
|
||
this.session.free(); | ||
} | ||
} |