|
||||||||
|
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.

I ran into this problem during an upgrade to CVS Plugin 2.7 with Jenkins 1.5. The server appeared to be hung up on start up and was writing tremendous log files due to this WARNING stacktrace appearing over and over. We have 170 jobs and close to 12,000 builds.
It came down to one line in the jenkins build.xml file which sits inside the build folders. This is what part of an existing build.xml file looked like:
<hudson.scm.cvstagging.CvsTagAction>
<build class="build" reference="../../.."/>
<tagNames/>
<parent>
In a new job, this section of the build file looked like this
<hudson.scm.cvstagging.CvsTagAction plugin="[email protected]">
<build class="build" reference="../../.."/>
<tagNames/>
<parent class="hudson.scm.CVSSCM">
After updating the <parent> element in the old files to match <parent class="hudson.scm.CVSSCM"> and restarting the server, the log warnings went away. Adding the plugin attribute to the CvsTagAction element in the older build xml files did not have any effect.