-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
audio: fix reacting on mic enable/disable requests #161
Conversation
323ac46
to
3d32ff7
Compare
OpenQA test summaryComplete test suite and dependencies: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2024121004-4.3&flavor=pull-requests Test run included the following:
New failures, excluding unstableCompared to: https://openqa.qubes-os.org/tests/overview?distri=qubesos&version=4.3&build=2024111705-4.3&flavor=update
Failed tests5 failures
Fixed failuresCompared to: https://openqa.qubes-os.org/tests/119126#dependencies 1 fixed
Unstable tests
|
First of all, after getting an event of QubesDB FD, actually call qdb_read_watch() so the event is cleared and the next one can be received. But that's not enough. libqubesdb's queueing of watches doesn't handle well using the same connection for both watches and commands, and using non-blocking mode (monitoring qdb_watch_fd(), instead of calling qdb_read_watch() in a loop). While this issue wants fixing on the libqubesdb side, for now use separate connection to workaround the issue. Fixes QubesOS/qubes-issues#9619
3d32ff7
to
97c9e36
Compare
0030c81
to
97c9e36
Compare
After getting an event of QubesDB FD, actually call qdb_read_watch() so
the event is cleared and the next one can be received.
QubesOS/qubes-issues#9619