Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.9.28 (2026-01-15)

### Changes

- Mark the background thread as deamon so that it won't block the process from exiting.

## 0.9.27 (2026-01-14)

### Changes
Expand Down
1 change: 1 addition & 0 deletions python/mujinwebstackclient/controllerwebclientraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class BackgroundThread(object):
def __init__(self):
self._eventLoopReadyEvent = threading.Event()
self._thread = threading.Thread(target=self._RunEventLoop)
self._thread.daemon = True # daemon thread; won't block the process from exiting
self._thread.start()
# block and wait for the signal to make sure the event loop is created and set in the _thread
self._eventLoopReadyEvent.wait()
Expand Down
2 changes: 1 addition & 1 deletion python/mujinwebstackclient/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.9.27'
__version__ = '0.9.28'

# Do not forget to update CHANGELOG.md