Since the beginning of the week I am dealing with a strange error. I have an application using svnkit 1.8 which failed to checkout a project from svn. The following error is raised :
svn: E155017: Cant install "a file" from pristine store, because no checksum is recorded for this file
After some debugging I find that this error is returned by the svn server. Note that this error appears since I upgrade svnkit to 1.8 from 1.7.
Here is my current configuration :
- My application with svnkit 1.8
- The svn server with svn 1.6
- Cntlm on my pc to use a proxy
- Ubuntu 14.04 with svn 1.8
If I check out the project in comand line it works.
And the last but not least when I start my app inside Intellij everything works fine!
I don't know what to do anymore. Thanks for any help.
Edit: I answer to myself.
It seems that my problem is related with the new ".svn behavior" introduced with svn 1.7.
Activating svnkit log show me that it fails to find wc.db... So intead of checkout my file I use SVNRepository.getFile()
to read it.