You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm facing the problem that my jack client becomes deactivated at some point of my code even if I'm not calling client.deactivate().
When this happens i'm not able to (de)connect any ports registered by my script. I'm just getting an error message from jack_connect
I'm having a hard time to debug the script and determine the exact position in the code where this is happening. So I'm looking for any way to check if the client is still activated. I tried client.status which output <jack.Status 0x0: no flags set> regardless if the client is activated or no.
I also tried client.set_shutdown_callback (f) but its not executed when the client becomes deactivated.
Any help would be greatly appreciated :)
The text was updated successfully, but these errors were encountered:
You can try to print something from the process callback, and whenever it stops, the client has probably been deactivated.
I know that's not great, but maybe it helps ...
Hi,
I'm facing the problem that my jack client becomes deactivated at some point of my code even if I'm not calling
client.deactivate()
.When this happens i'm not able to (de)connect any ports registered by my script. I'm just getting an error message from jack_connect
I'm having a hard time to debug the script and determine the exact position in the code where this is happening. So I'm looking for any way to check if the client is still activated. I tried
client.status
which output<jack.Status 0x0: no flags set>
regardless if the client is activated or no.I also tried
client.set_shutdown_callback (f)
but its not executed when the client becomes deactivated.Any help would be greatly appreciated :)
The text was updated successfully, but these errors were encountered: