You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Add Close() method to Project to release resources
Problem Observed
Goroutine leaks because there is no way to "close" projects
Problem Detail
NewProject() creates a defaultListener in it.
The listener starts a new goroutine in NewDefaultListener().
We currently don't have a method to stop this goroutine.
Suggested Resolution
This commit adds a new method Close() to release resources
tied to a Project.
Signed-off-by: Iwasaki Yudai <[email protected]>
0 commit comments