|
||||||||
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 |
[JIRA] (JENKINS-16044) Exception on CVS Log parsing
anders.mon...@gmail.com (JIRA) Mon, 14 Jan 2013 05:50:00 -0800
- [JIRA] (JENKINS-16044) Exception on CVS ... anders.mon...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... michael.m.cla...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... anders.mon...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... anders.mon...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... anders.mon...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... michael.m.cla...@gmail.com (JIRA)
- [JIRA] (JENKINS-16044) Exception on... scm_issue_l...@java.net (JIRA)
- [JIRA] (JENKINS-16044) Exception on... scm_issue_l...@java.net (JIRA)
This is due to us using CVSNT and a NT path in the CVSROOT. Our CVSROOT was :pserver:cvsuser@<server>:d:\cvs, this caused line 142 in CvsLog to fail:
final String rootName = cvsRoot.split("/", 2)[1];
I guess this is expecting a regular unix like path like /cvs/repo/.
Changing our CVSROOT to forwardslash fixed the problem.