We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tak/playtak/src/main.rs
Lines 90 to 93 in c3f0fe9
The text was updated successfully, but these errors were encountered:
The write now happens in a synchronous thread. Is this still an issue? Please confirm and close if not.
Sorry, something went wrong.
This was and still is on a synchronous background thread. You should .join() that thread to make sure it terminates before the main thread.
.join()
No branches or pull requests
tak/playtak/src/main.rs
Lines 90 to 93 in c3f0fe9
These lines are not guaranteed to run -- once the main thread ends, all background threads are eligible to be killed immediately.
The text was updated successfully, but these errors were encountered: