|
||||||||
|
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-10222) Jenkins cleaning o... [email protected] (JIRA)
- [JIRA] (JENKINS-10222) Jenkins clean... [email protected] (JIRA)
- [JIRA] (JENKINS-10222) Jenkins clean... [email protected] (JIRA)
- [JIRA] (JENKINS-10222) Jenkins clean... [email protected] (JIRA)

This error message comes from the hudson.scm.subversion.UpdateUpdater.java at line 96. The reason for the failure is because svnInfo.url != url. So I built a test version of the plugin and logged some extra information so I could find out what 'svnInfo.url' was and what 'url' was.
My job configuration uses the 'svn update' option and my SVN URL looks something like this (I've had to modify the URL because the path is on an intranet where info is proprietary):
https://<some IP address>/svn/REPO/directory/branches/some_branch/@HEAD
In this scenario, I got the following:
The observable difference is that svnInfo.url has no trailing slash and url has a trailing slash.
Therefore, I presume that the fix is to modify one of those two variables in some appropriate manner so that they agree with each other. If I have time to investigate the appropriate place to add (or remove) the slash, I'll report back.