Have you ever had to checkout an SVN revision by the date and gotten an error like the following?
bash$ svn co -r {2016-11-28} https://example.com/svn/foo svn: E175002: Unexpected HTTP status 500 'Internal Server Error' on '/svn/!svn/me' svn: E175002: Additional errors: svn: E175002: REPORT request on '/svn/!svn/me' failed: 500 Internal Server Error
(This is often the case with Jenkins, see this issue for some more details)
Why Jenkins checks out revisions by date is another matter(it’s stupid), but what is the original problem in the first place? Well, if we look at the Apache error_log on the server, it will look something like the following:
[Mon Nov 28 08:01:24 2016] [error] [client 127.0.0.1] Could not access revision times. [500, #175002]
Well, that’s not good. What causes the problem exactly? I’m not sure; but this only started after I committed a revision and the SVN command exited after printing out an error message, something about not being able to lock the database(I think this came from the server). Things didn’t break all at once for some reason, but eventually all of the automated builds on Jenkins were failing. The workaround specified in JENKINS-17431(edit the URLs to add @HEAD) works, but the fact that it randomly broke was bothering me.
Since this seemed to be related to a revision time problem, I tried to find out what revision was broken, which eventually led me to this blog post with the solution. I’ve copied the relevant portions of the post below incase the post is ever removed/deleted:
In order to correct the problem the entries with the missing dates will need to be located. This is easily done with the following command string which needs to be run on the Subversion server itself.
svn log --xml -v -r {2010-12-01T00:00:00Z}:{2011-01-13T15:00:00Z} file:///svn/repoIf there is any issue related to the time on a revision then the following error will be shown when you run the above command.
<?xml version="1.0"?> <log> svn: Failed to find time on revision 34534The first step in making the necessary corrections is to edit the /svn/repos/mosaic/hooks/post-revprop-change file so that it contains the following information.
#!/bin/sh exit 0If the previous steps had not be performed the hook files would have prevented this step from actually occurring. So to make the change to the revision entry the svn command is used on the server itself using the propset subcommand. When entering the date try to select a date that is in between the dates that proceed and follow this revision entry.
svn propset -r34534 --revprop svn:date '2010-11-29T19:55:44.000220Z' file:///svn/repo
The interesting thing about this was that in my case, the particular revision that was bad had been committed over 3 years ago, so why that one revision was bad is still a mystery to me.
Leave a Reply