Process leaked file descriptors. https://jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors

2019-03-05 Thread Varsha M
hi, I am trying to run windows batch file and trying to start a exe file. The exe file does not start on desktop. I see the job getting run success but i get message - Process leaked file descriptors. https://jenkins.io/redirect/troubleshooting/process-leaked-file-descriptors Also in

Process leaked file descriptors

2016-10-23 Thread Pritam Sharma
Hi All, I have been trying to fix this issue, where the Jenkins job throws failure as "Process leaked file descriptors. See http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for more information Build step 'Invoke Ant' marked build as failure".

Re: java.lang.IllegalArgumentException: Invalid id: Process leaked file descriptors.

2014-12-15 Thread Luís Borges de Oliveira
On 01-12-2014 17:25, Luís Borges de Oliveira wrote: I've tried the workaround suggested by the error messsage. If I access the /systemInfo page, I can confirm that hudson.util.ProcessTree.disable is set to true, but the error still happens. Alternatively, it'd be useful to avoid failing the bui

java.lang.IllegalArgumentException: Invalid id: Process leaked file descriptors.

2014-12-01 Thread Luís Borges de Oliveira
Hello, Every so often I get this error during the SCM update phase: > C:\Git\bin\git.exe rev-list 101d7a8540b24fcb19f4cfe4a3f3503a20adb0a8 # > timeout=10 FATAL: Invalid id: Process leaked file descriptors. See http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for

RE: I did not spawn a child process to build my project, why am I getting this: Process leaked file descriptors. See wiki.jenkins-ci.org/display/JENKINS/. for more information ERROR: Failed to clean t

2013-02-04 Thread Hong Ju
: jenkinsci-users@googlegroups.com Subject: Re: I did not spawn a child process to build my project, why am I getting this: Process leaked file descriptors. See wiki.jenkins-ci.org/display/JENKINS/... for more information ERROR: Failed to clean the workspace Well, everything is more difficult on Windows

Re: I did not spawn a child process to build my project, why am I getting this: Process leaked file descriptors. See wiki.jenkins-ci.org/display/JENKINS/… for more information ERROR: Failed to clean t

2013-02-03 Thread Sami Tikka
t repository > Cloning repository g...@github.com:stewardconnect/CARE.git > git --version > Process leaked file descriptors. See > http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for > more information > ERROR: Failed to clean the workspace > java.io.IOE

I did not spawn a child process to build my project, why am I getting this: Process leaked file descriptors. See wiki.jenkins-ci.org/display/JENKINS/… for more information ERROR: Failed to clean the w

2013-01-21 Thread hong . ju
ser/null> Building in workspace C:\Jenkins\workspace\Test Checkout:Test / C:\Jenkins\workspace\Test - hudson.remoting.LocalChannel@6846c Using strategy: Default Cloning the remote Git repository Cloning repository g...@github.com:stewardconnect/CARE.git git --version Process leaked file descriptor

Re: Process leaked file descriptors

2012-07-11 Thread Varghese Renny
Reallly sorry for replying on that mail soon.. Thanks for the suggestion.. Regards, varghese

Re: Process leaked file descriptors

2012-07-11 Thread Sami Tikka
. -- Sami Varghese Renny kirjoitti 11.7.2012 kello 9.38: > > > Hi, > > Process leaked file descriptors. See > http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for > more information > I am getting above error when i configure

Re: Process leaked file descriptors

2012-07-11 Thread Sami Tikka
It is not necessary to bump your emails, especially every few hours. Some of us have to work for living and we cannot monitor this list all day. Please allow a couple of days for people to read your questions. -- Sami Varghese Renny kirjoitti 11.7.2012 kello 13.40: > Somebody please reply on

Re: Process leaked file descriptors

2012-07-11 Thread Varghese Renny
Somebody please reply on this mail?? Thanks

Process leaked file descriptors

2012-07-10 Thread Varghese Renny
Hi, Process leaked file descriptors. See http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for more information I am getting above error when i configure in a job to do stop and start of tomcat server. When i googled it, i got recomended solution as set

Re: Process leaked file descriptors.

2012-04-06 Thread krikar
So I solved it using a workaround (pretty much as you suggested). What I did was: - launch the TestNG using SCHTASK - Redirect all output to a file, console.log - Scan that log file for some text that signals the end of the test. Below is the code I used in the Build Step. Maybe it will

Re: Process leaked file descriptors.

2012-04-05 Thread Jan Seidel
Oh boy X) This sounds a bit like a memory issue in Java. Did you try -XmX1024m or the like? To answer your question, I think I have seen a plugin that notifies an upstream job...*scratch* Join plugin I think. But this requires to get creative. The join plugin interfaces between an up- and downst

Re: Process leaked file descriptors.

2012-04-04 Thread krikar
I will certainly try different approaches. Yes, the tests runs for hours and hours :-) More interesting info. I can get the same behavior using VirtualBox. If I launch the test on a VirtualBox guest from a host using following command: vboxmanage guestcontrol "$VM_NAME" exec --image "cmd.exe" -

Re: Process leaked file descriptors.

2012-04-04 Thread Jan Seidel
btw. is it confirmed that the test runs proper as standalone? not that you are chasing a symptom and not the cause

Re: Process leaked file descriptors.

2012-04-04 Thread Jan Seidel
What about putting java -DTestSuite="My Regression Test" -cp test.jar org.testng.TestNG -d "testng-results" MyTest.xml into a batch file, create a build step that calls the batch file and archive the artifacts? I think that could help to get rid of that putative behaviour of Jenkins On 4 Apr., 17:

Re: Process leaked file descriptors.

2012-04-04 Thread krikar
I think you're referring to testng-plugin, but that does only publishing of testng test results, not actual launching testng. But thanks anyway, Kristian.

Re: Process leaked file descriptors.

2012-04-04 Thread Gábor Garami
om the > tests, like > java -DTestSuite="My Regression Test" -cp test.jar org.testng.TestNG -d > "testng-results" MyTest.xml 1>console.log 2>&1 > but that did not help, I still get "Process leaked file descriptors..." > > /Kristian &g

Re: Process leaked file descriptors.

2012-04-04 Thread krikar
, like java -DTestSuite="My Regression Test" -cp test.jar org.testng.TestNG -d "testng-results" MyTest.xml 1>console.log 2>&1 but that did not help, I still get "Process leaked file descriptors..." /Kristian On Wednesday, April 4, 2012 1:50:35 PM UTC+2, Jan

Re: Process leaked file descriptors.

2012-04-04 Thread Jan Seidel
27;m doing here. I'm running a TestNG test that continuously talks on > STDOUT to Jenkins. But maybe TestNG is forking something?? > > I tired also to run the tests using ant, but I got the same failure: > Process leaked file descriptors. > Seehttp://wiki.jenkins-ci.org/display/

Process leaked file descriptors.

2012-04-04 Thread krikar
"testng-results" MyTest.xml 3. After about 9 minutes, Jenkins stops the execution of the TestNG test with: Process leaked file descriptors. See http://wiki.jenkins-ci.org/display/JENKINS/Spawning+processes+from+build for more information So, as I understand, this can