We use http protocol with VisualSVN server and run into error messages saying 'chunked stream ended unexpectedly'. Repositories scans are not up-to-date.
https://confluence.atlassian.com/fishkb/svn-indexing-fails-due-to-chunked-stream-ended-unexpectedly-833913114.html says Configure the web server to avoid the connection from being interrupted as resolution.
Does anyone know which attributes to set in Apache?
Hello @Thomas Schneider,
The error code for this message is usually:
svn: E175002: chunked stream ended unexpectedly
It looks like for fixing this issue you need to add allow from all in the SVN configuration on httpd.conf.
In Apache 2.2 it should be something like this:
<Directory /repos>
...
allow from all
</Directory>
In Apache 2.4 it should be something like this:
<Directory /repos>
...
require all granted
...
</Directory>
Please remember to restart your Subversion service so that these changes in httpd.conf can be picked.
Please let me know if this helps!
Cheers,
Felipe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.