Hudson cancel does not cancel all processes

I am working with hudson v 1.323 installed as a windows service on Windows XP. I am creating a wrapper script that looks like this:

#!c:/cygwin/bin/sh 
export PATH=/cygdrive/c/cygwin/bin:$PATH
make -j 4 $MAKE_TARGET

      

When I reverse this build using the red X, everything seems to have stopped at Hudzon, but when I look into Windows processes, there are still many "make" and "sh" runs. I am using make v.3.80 cygwin.

Any help on how to get all the processes killed by Hudson?

+2


source to share


1 answer


Have you tried looking at a Hudson thread dump to see if the thread is running with your work. It can also give you an indication of why the protector is not interrupting.



The thread dump can be seen directly from the hudson web console: http: // yourserver / hudson / threadDump

+2


source







All Articles