Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grails 2.3 & GGTS 3.4 stop button not working

How to stop grails processes in GGTS 3.4 with grails 2.3. the stop button of GGTS is not stopping the server running and the java.exe processes are still showing in task manager.

like image 764
CSR Avatar asked Oct 21 '22 20:10

CSR


1 Answers

Comment the grails.project.fork = [ .. ] part of your BuildConfig.groovy file.

This part enables running run-app, test-app and war in different threads(so you don't have to stop one to start the other), and it seems ggts isn't successfully destroying the thread right now.

For reference, here is the related issue in the ggts bug tracker https://issuetracker.springsource.com/browse/STS-3522

like image 194
john Avatar answered Oct 24 '22 01:10

john