-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Open
Labels
Description
I know there already is a issue #3799, and I thought it should be solved in 2.4.0.
But recently I was trying to upgrade my project to play 2.4.0,
it appears to one thread named "ForkJoinPool-n-worker-n" was leaked after every
- run
- refresh http://127.0.0.1:9000 in browser
- ctrl d
cycle.
By following these steps, you could reproduce it easily.
- use activator new project-name play-scala to create a new sample project.
- run "activator" command in terminal
- start "Visual VM", connect to the jvm you just started
- then open threads tab
- run "run" in terminal
- access "http://127.0.0.1:9000" in browser
- press "ctrl d" in terminal
- then you could see a thread named "ForkJoinPool-n-worker-n" increased in Visual VM's threads list.
vipermind