QThread: Destroyed while thread is still running
Hi Joey,
venvipy seems like a very nice tool. When i run the version 0.3.7 in a virtual python environment i encounter the issue the after closing venvipy i recieve following message:
QThread: Destroyed while thread is still running
Abgebrochen (Speicherabzug geschrieben)
Im a Mint Linux user:
$ cat /etc/os-release
NAME="Linux Mint"
VERSION="22.1 (Xia)"
ID=linuxmint
ID_LIKE="ubuntu debian"
PRETTY_NAME="Linux Mint 22.1"
VERSION_ID="22.1"
HOME_URL="https://www.linuxmint.com/"
SUPPORT_URL="https://forums.linuxmint.com/"
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/"
PRIVACY_POLICY_URL="https://www.linuxmint.com/"
VERSION_CODENAME=xia
UBUNTU_CODENAME=noble
Thanks for your support.
BR, Andreas
Hi Andreas,
yeah, unfortunately I'm working on other projects and have little time for Venvipy. But I try to invest at least a few hours in reworking the whole application. I want to make it crossplatform and add a few more features.
As for the "QThread-destroyed"-warning, it doesn't break anything as far as I can see. Thanks so much for your help by identifying this one.
KR Joey
Hi Joey,
projects and have little time for Venvipy
Don't feel pushed by me :)
I checked ChatGPT and this is the response: https://chatgpt.com/share/68ea1f5b-176c-8004-add1-53c12f59b28d
- Stop the thread before exit:
# Example for a worker thread in PyQt/PySide
self.thread.quit()
self.thread.wait() # Blocks until thread finishes
I dont know if it's helpful.
Thanks.
BR, Andreas