Copilot for Eclipse plugin causing eclipse to freeze(not responding) after updating the plugin to 0.9.3 #168126
Replies: 7 comments 11 replies
-
💬 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.
-
If Eclipse freezes, run |
Beta Was this translation helpful? Give feedback.
-
Hi @amardeep434 By saying If just for a while, Could you please check if there is any error log in the error log view? ![]() If it's forever, pls run |
Beta Was this translation helpful? Give feedback.
-
yes it freezes forever, attached is the thread dump from my eclipse (2025-06) |
Beta Was this translation helpful? Give feedback.
-
UI thread holds UI thread lock and waits for
LS server code executes the CompletableFuture code which hangs trying to execute code in UI thread
I've wrote already on a private bug report, ? |
Beta Was this translation helpful? Give feedback.
-
After updating to Copilot 0.9.3, Eclipse may freeze due to plugin conflicts or auto-completion issues. Fixes include disabling Copilot, rolling back to 0.9.2, updating Eclipse to 2024-03 or newer, or turning off inline suggestions. Monitor GitHub issues for updates and potential bug fixes from the maintainers. |
Beta Was this translation helpful? Give feedback.
-
It sounds like you're encountering a compatibility or stability issue with the GitHub Copilot for Eclipse plugin version 0.9.3 — especially since it's consistently causing Eclipse to freeze across multiple versions (2025-06 and 2024-09). Here's a structured response to address your questions: ✅ How to Capture Logs in Eclipse Open the .log file manually: Navigate to your workspace directory (e.g., ~/eclipse-workspace/.metadata/.log). Open the .log file with any text editor (Notepad++, VS Code, etc.). Look for entries with severity !ENTRY and !STACK near the time Eclipse froze. Share the relevant part in your GitHub issue. Enable Console Logging (if you can get Eclipse to run briefly): Add the following to your Eclipse launch config (in eclipse.ini): diff Use JVisualVM or jstack: If Eclipse is freezing and not crashing, you can inspect a thread dump: Run: jps to get the Eclipse process ID. Then: jstack and capture the thread dump. This can help reveal deadlocks or stuck threads (useful to share in the GitHub issue). 🔁 How to Revert Copilot Plugin to Version 0.9.2
Find the GitHub Copilot plugin, select it, and click Uninstall. Restart Eclipse.
Find release v0.9.2 and download the .zip or update site link. Install via: Help > Install New Software... Click “Add” > “Archive…” if using a .zip, or paste the update site URL. Follow the wizard and restart Eclipse. 💡 Bonus: Disable Auto-Update for the Plugin Go to: Window > Preferences > Install/Update > Automatic Updates. Uncheck automatic updates or exclude Copilot plugin. 🛠 Suggested Action for the GitHub Team Mention Eclipse version (you did already) OS details (Windows/Linux/macOS + version) JDK version If possible, share logs from .metadata/.log or jstack |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Copilot Feature Area
General
Body
I updated my copilot plugin to 0.9.3 today and since then it has been causing my eclipse to freeze(not responding).
The same freezing issue was noticed with a few of my other colleagues. Not sure how to capture logs for the same.
I'm using eclipse 2025-06 and my colleagues are using 2024-09.
How can i capture logs and share the errors here? Also how can i revert back to the older 0.9.2 version?
Beta Was this translation helpful? Give feedback.
All reactions