Rob Petti commented on Bug JENKINS-10686

Yeah, you will want to update the perforce plugin to the latest. There should have been connectivity improvements since then.

That error message is a warning generated by Jenkins Core, so we can't change it. If it shows up, then you will need to restart Jenkins or kill you polling threads. You can kill threads using the following system groovy script:

Thread.getAllStackTraces().keySet().each(){ item ->
if(item.getName().contains("SCM polling")){ println "Interrupting thread " + item.getId() + " " + item.getName(); item.interrupt() }
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to