.EXE file keeps on running on the background #156431
-
Select Topic AreaBug BodyHello guys, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hello, I've reviewed your repository and here are several potential reasons why your generated Common Causes:1. Non-terminating loops:
2. Background threads:
thread = threading.Thread(target=your_function)
thread.daemon = True
thread.start()
Thread myThread = new Thread(MyMethod);
myThread.IsBackground = true;
myThread.Start();3. Hidden or secondary windows:
4. External subprocesses:
Debugging Steps:
import threading
print([t.name for t in threading.enumerate()])
Possible Quick Fixes:
Ideally, you should identify and fix the root cause (threads, loops, or subprocesses). This ensures graceful and clean termination. If you'd like further assistance, consider sharing specific sections of code, such as thread initialization or application shutdown logic. Hope this helps! |
Beta Was this translation helpful? Give feedback.
thank you for taking time to reply, I really appreciated it. However, I developed the software using TypeScript and the thing is I am not really that good with code. Also, I have been using electron.js in order to extract the .exe file, and it does give me one, but it keeps on running on the background and so far it seems that I am actually stuck on this step. If you can help me up solve this, I will be really very grateful