We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05337ba commit 0029e36Copy full SHA for 0029e36
python/mujinwebstackclient/controllerwebclientraw.py
@@ -567,9 +567,9 @@ async def _Unsubscribe():
567
if not self._IsWebSocketConnectionOpen():
568
return
569
570
- # check if the subscription exists
+ # check if the subscription exists at all
571
if subscription.GetSubscriptionID() not in self._subscriptions:
572
- raise ControllerGraphClientException(_('Unknown subscription %r') % (subscription))
+ return
573
574
# actually unsubscribe and wait until there is a result
575
self._backgroundThread.RunCoroutine(_Unsubscribe()).result()
0 commit comments