Forum Discussion
covfefe
Occasional Contributor
4 years agosystem-console, close_service not working?
Hello,
I am trying to close_service & claim_service (to handle disconnected devices).
Unfortunately I am unable to make it work.
How can I close_service pathA, then claim_service pathA ?
...
sstrell
Super Contributor
4 years agoNo, it looks like you are using the master service path for both close_service and claim_service. A claim path is usually created like this in a script after you've created the service path (mpath in this case):
set claim_path [claim_service master $mpath {} {}]
So then close_service can simply be:
close_service master $claim_path