chunked stream ended unexpectedly

Thomas Schneider November 3, 2017

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?

1 answer

0 votes
Felipe Kraemer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 2, 2018

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events