Description
sdk/src/opendecree/watcher.py:184-191 joins the thread with a 5-second timeout but never calls stream.cancel(). The gRPC Subscribe call blocks forever inside the thread; with daemon=True the thread leaks until process exit.
Acceptance criteria
Description
sdk/src/opendecree/watcher.py:184-191joins the thread with a 5-second timeout but never callsstream.cancel(). The gRPCSubscribecall blocks forever inside the thread; withdaemon=Truethe thread leaks until process exit.Acceptance criteria
self._streamand callself._stream.cancel()beforethread.joinwatcher.stop()