Skip to content

Commit 9412513

Browse files
authored
fix IXXAT not properly shut down message (hardbyte#1606)
1 parent 2582fe9 commit 9412513

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

can/interfaces/ixxat/canlib_vcinpl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -825,6 +825,7 @@ def _send_periodic_internal(
825825
)
826826

827827
def shutdown(self):
828+
super().shutdown()
828829
if self._scheduler is not None:
829830
_canlib.canSchedulerClose(self._scheduler)
830831
_canlib.canChannelClose(self._channel_handle)

can/interfaces/ixxat/canlib_vcinpl2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,7 @@ def _send_periodic_internal(
972972
)
973973

974974
def shutdown(self):
975+
super().shutdown()
975976
if self._scheduler is not None:
976977
_canlib.canSchedulerClose(self._scheduler)
977978
_canlib.canChannelClose(self._channel_handle)

0 commit comments

Comments
 (0)