On Tue, Jun 18, 2013 at 3:20 PM, Mark Phippard <markp...@gmail.com> wrote:
> On Mon, Jun 17, 2013 at 4:00 PM, Lieven Govaerts <svn...@mobsol.be> wrote:
>> On Mon, Jun 17, 2013 at 9:22 PM, Mark Phippard <markp...@gmail.com> wrote:
>>> I updated my Windows laptop to 1.8.0 final.  I am trying to commit a
>>> change for Subclipse to tigris.org and it is failing.  The error
>>> message is not that helpful.  Any ideas how to get better error
>>> information?
>>
>> There might be a higher level option, but in serf you can enable lots
>> of debug logging, at compile time in serf_private.h.
>> SSL_VERBOSE gives huge amount of log lines but is probably what you
>> need here, other interesting flags are SOCK_VERBOSE and CONN_VERBOSE.
>
> I turned on everything and ran command again.  Attaching the output.
>

Extract from the debugging output:

> [2013-06-18T09:17:40.050463-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
> ./outgoing.c: --- socket_sendv:
> CHECKOUT /svn/subclipse/!svn/ver/5706/trunk/www/update_1.10.x/features 
> HTTP/1.1
> Host: subclipse.tigris.org
> Authorization: Basic xxxxxxxxxxxxxxxxxx
> User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
> Content-Type: text/xml
> Accept-Encoding: gzip
> DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
> DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
> DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
> Transfer-Encoding: chunked
>
> e5
> <?xml version="1.0" encoding="utf-8"?><D:checkout 
> xmlns:D="DAV:"><D:activity-set><D:href>/svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62->
>  
> 5be2e0291f8e</D:href></D:activity-set><D:apply-to-version></D:apply-to-version></D:checkout>
> 0
>
> -(703)-
> [2013-06-18T09:17:40.171850-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
> buckets/socket_buckets.c: --- socket_recv:
> HTTP/1.1 201 Created
> Date: Tue, 18 Jun 2013 13:17:37 GMT
> Server: Apache
> HelmLoginID: markphip
> Cache-Control: no-cache
> Location: 
> http://subclipse.tigris.org/svn/subclipse/!svn/wrk/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/trunk/www/update_1.10.x/features
> Content-Length: 349
> Content-Type: text/html; charset=ISO-8859-1
>
>
> -(323)-
> [2013-06-18T09:17:40.173550-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
> buckets/socket_buckets.c: socket_recv error 70014

This response has content-length:349 yet no data is received in the
response body. Serf then gets an APR_EOF on the socket.

So basically seen from the client, the server aborts the connection
mid-response unexpectedly. Not even a Connection:Close header was set.

Can you verify in your wireshark trace that you see the same thing as
what's logged?

The question here is why the server aborts the connection.

> [2013-06-18T09:17:41.021136-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
> ./outgoing.c: closed socket, status 0
> [2013-06-18T09:17:41.021182-04] ./outgoing.c: reset connection 0x588d4a28
> [2013-06-18T09:17:41.021217-04] ./outgoing.c: created socket for conn 
> 0x588d4a28, status 0
> [2013-06-18T09:17:41.021301-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
> ./outgoing.c: connected socket for conn 0x588d4a28, status 36
> [2013-06-18T09:17:41.149533-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
> ./outgoing.c: --- socket_sendv:
> DELETE /svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e HTTP/1.1
> Host: subclipse.tigris.org
..
> HTTP/1.1 204 No Content
> Date: Tue, 18 Jun 2013 13:17:38 GMT
> Server: Apache
> HelmLoginID: markphip
> Content-Length: 0
> Content-Type: text/plain
>
>
> -(148)-

This 204 response is not a problem, there's a special case for
Content-Length == 0 && code == 204 in serf (response_buckets.c).


> I also created a test project on tigris.  So far, all commits are
> working for that project -- which I guess is good news.  Maybe some
> odd scenario I am running into.
>
> I am just committing some new files though, so not sure what I am
> doing that would be "weird".
>
> --
> Thanks
>
> Mark Phippard
> http://markphip.blogspot.com/

hth,

Lieven
$ svn ci -m "Post 1.10.0 release"
[2013-06-18T09:17:38.508696-04] ./outgoing.c: created connection 0x588d4a28
[2013-06-18T09:17:38.510363-04] ./outgoing.c: created socket for conn 
0x588d4a28, status 0
[2013-06-18T09:17:38.510512-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: connected socket for conn 0x588d4a28, status 36
[2013-06-18T09:17:38.624929-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
OPTIONS /svn/subclipse/trunk/www/update_1.10.x HTTP/1.1
Host: subclipse.tigris.org
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Connection: keep-alive
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Content-Length: 131

<?xml version="1.0" encoding="utf-8"?><D:options 
xmlns:D="DAV:"><D:activity-collection-set></D:activity-collection-set></D:options>-(548)-
[2013-06-18T09:17:38.745960-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 401 Authorization Required
Date: Tue, 18 Jun 2013 13:17:36 GMT
Server: Apache
WWW-Authenticate: Basic realm="CollabNet Subversion Repository"
Content-Length: 471
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>401 Authorization Required</title>
</head><body>
<h1>Authorization Required</h1>
<p>This server could not verify that you
are authorized to access the document
requested.  Either you supplied the wrong
credentials (e.g., bad password), or your
browser doesn't understand how to supply
the credentials required.</p>
<hr>
<address>Apache Server at subclipse.tigris.org Port 80</address>
</body></html>

-(751)-
[2013-06-18T09:17:38.746147-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
auth/auth.c: Server authz required. Response header(s): Basic realm="CollabNet 
Subversion Repository"
[2013-06-18T09:17:38.746193-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
auth/auth.c: Client supports: Basic
[2013-06-18T09:17:38.746220-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
auth/auth.c: ... matched: Basic
[2013-06-18T09:17:38.746803-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
OPTIONS /svn/subclipse/trunk/www/update_1.10.x HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Connection: keep-alive
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Content-Length: 131

<?xml version="1.0" encoding="utf-8"?><D:options 
xmlns:D="DAV:"><D:activity-collection-set></D:activity-collection-set></D:options>-(587)-
[2013-06-18T09:17:38.906150-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 200 OK
Date: Tue, 18 Jun 2013 13:17:36 GMT
Server: Apache
HelmLoginID: markphip
DAV: 1,2
DAV: version-control,checkout,working-resource
DAV: merge,baseline,activity,version-controlled-collection
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
DAV: http://subversion.tigris.org/xmlns/dav/svn/partial-replay
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: <http://apache.org/dav/propset/fs/1>
MS-Author-Via: DAV
Allow: 
OPTIONS,GET,HEAD,POST,DELETE,TRACE,PROPFIND,PROPPATCH,COPY,MOVE,LOCK,UNLOCK,CHECKOUT
Content-Length: 193
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="utf-8"?>
<D:options-response xmlns:D="DAV:">
<D:activity-collection-set><D:href>/svn/subclipse/!svn/act/</D:href></D:activity-collection-set></D:options-response>

-(920)-
[2013-06-18T09:17:38.906594-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
PROPFIND /svn/subclipse/trunk/www/update_1.10.x HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Depth: 0
Transfer-Encoding: chunked

12c
<?xml version="1.0" encoding="utf-8"?><propfind 
xmlns="DAV:"><prop><version-controlled-configuration 
xmlns="DAV:"/><resourcetype xmlns="DAV:"/><baseline-relative-path 
xmlns="http://subversion.tigris.org/xmlns/dav/"/><repository-uuid 
xmlns="http://subversion.tigris.org/xmlns/dav/"/></prop></propfind>
0

-(762)-
[2013-06-18T09:17:39.051162-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 207 Multi-Status
Date: Tue, 18 Jun 2013 13:17:36 GMT
Server: Apache
HelmLoginID: markphip
Content-Length: 732
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:" 
xmlns:ns1="http://subversion.tigris.org/xmlns/dav/"; xmlns:ns0="DAV:">
<D:response xmlns:lp1="DAV:" 
xmlns:lp3="http://subversion.tigris.org/xmlns/dav/";>
<D:href>/svn/subclipse/trunk/www/update_1.10.x/</D:href>
<D:propstat>
<D:prop>
<lp1:version-controlled-configuration><D:href>/svn/subclipse/!svn/vcc/default</D:href></lp1:version-controlled-configuration>
<lp1:resourcetype><D:collection/></lp1:resourcetype>
<lp3:baseline-relative-path>trunk/www/update_1.10.x</lp3:baseline-relative-path>
<lp3:repository-uuid>a34601ff-79c0-0310-90bb-fac03367fbd1</lp3:repository-uuid>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>

-(899)-
[2013-06-18T09:17:39.051750-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
MKACTIVITY /svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops

-(412)-
[2013-06-18T09:17:39.308202-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 201 Created
Date: Tue, 18 Jun 2013 13:17:36 GMT
Server: Apache
HelmLoginID: markphip
Cache-Control: no-cache
Location: 
http://subclipse.tigris.org/svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e
Content-Length: 304
Content-Type: text/html; charset=ISO-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>201 Created</title>
</head><body>
<h1>Created</h1>
<p>Activity /svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e has 
been created.</p>
<hr />
<address>Apache Server at subclipse.tigris.org Port 80</address>
</body></html>

-(594)-
[2013-06-18T09:17:39.308438-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
PROPFIND /svn/subclipse/trunk/www/update_1.10.x HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Depth: 0
Transfer-Encoding: chunked

6f
<?xml version="1.0" encoding="utf-8"?><propfind xmlns="DAV:"><prop><checked-in 
xmlns="DAV:"/></prop></propfind>
0

-(572)-
[2013-06-18T09:17:39.432276-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 207 Multi-Status
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
HelmLoginID: markphip
Content-Length: 443
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:" xmlns:ns0="DAV:">
<D:response xmlns:lp1="DAV:" 
xmlns:lp3="http://subversion.tigris.org/xmlns/dav/";>
<D:href>/svn/subclipse/trunk/www/update_1.10.x/</D:href>
<D:propstat>
<D:prop>
<lp1:checked-in><D:href>/svn/subclipse/!svn/ver/5706/trunk/www/update_1.10.x</D:href></lp1:checked-in>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>

-(610)-
[2013-06-18T09:17:39.432620-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
CHECKOUT /svn/subclipse/!svn/vcc/default HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Transfer-Encoding: chunked

e5
<?xml version="1.0" encoding="utf-8"?><D:checkout 
xmlns:D="DAV:"><D:activity-set><D:href>/svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e</D:href></D:activity-set><D:apply-to-version></D:apply-to-version></D:checkout>
0

-(673)-
[2013-06-18T09:17:39.552090-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 201 Created
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
HelmLoginID: markphip
Cache-Control: no-cache
Location: 
http://subclipse.tigris.org/svn/subclipse/!svn/wbl/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/5706
Content-Length: 321
Content-Type: text/html; charset=ISO-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>201 Created</title>
</head><body>
<h1>Created</h1>
<p>Checked-out resource 
/svn/subclipse/!svn/wbl/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/5706 has been 
created.</p>
<hr />
<address>Apache Server at subclipse.tigris.org Port 80</address>
</body></html>

-(616)-
[2013-06-18T09:17:39.552374-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
PROPPATCH /svn/subclipse/!svn/wbl/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/5706 
HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Transfer-Encoding: chunked

135
<?xml version="1.0" encoding="utf-8"?><D:propertyupdate xmlns:D="DAV:" 
xmlns:V="http://subversion.tigris.org/xmlns/dav/"; 
xmlns:C="http://subversion.tigris.org/xmlns/custom/"; 
xmlns:S="http://subversion.tigris.org/xmlns/svn/";><D:set><D:prop><S:log>Post 
1.10.0 release</S:log></D:prop></D:set></D:propertyupdate>
0

-(765)-
[2013-06-18T09:17:39.674052-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 207 Multi-Status
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
HelmLoginID: markphip
Content-Length: 468
Content-Type: text/xml; charset="utf-8"

<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:" 
xmlns:ns3="http://subversion.tigris.org/xmlns/dav/"; 
xmlns:ns2="http://subversion.tigris.org/xmlns/custom/"; 
xmlns:ns1="http://subversion.tigris.org/xmlns/svn/"; xmlns:ns0="DAV:">
<D:response>
<D:href>/svn/subclipse/!svn/wbl/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/5706</D:href>
<D:propstat>
<D:prop>
<ns1:log/>
</D:prop>
<D:status>HTTP/1.1 200 OK</D:status>
</D:propstat>
</D:response>
</D:multistatus>

-(635)-
Adding  (bin)  update_1.10.x/artifacts.jar
[2013-06-18T09:17:39.674645-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
CHECKOUT /svn/subclipse/!svn/ver/5706/trunk/www/update_1.10.x HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Transfer-Encoding: chunked

e5
<?xml version="1.0" encoding="utf-8"?><D:checkout 
xmlns:D="DAV:"><D:activity-set><D:href>/svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e</D:href></D:activity-set><D:apply-to-version></D:apply-to-version></D:checkout>
0

-(694)-
[2013-06-18T09:17:39.801636-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 201 Created
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
HelmLoginID: markphip
Cache-Control: no-cache
Location: 
http://subclipse.tigris.org/svn/subclipse/!svn/wrk/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/trunk/www/update_1.10.x
Content-Length: 340
Content-Type: text/html; charset=ISO-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>201 Created</title>
</head><body>
<h1>Created</h1>
<p>Checked-out resource 
/svn/subclipse/!svn/wrk/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/trunk/www/update_1.10.x
 has been created.</p>
<hr />
<address>Apache Server at subclipse.tigris.org Port 80</address>
</body></html>

-(654)-
[2013-06-18T09:17:39.801877-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
HEAD /svn/subclipse/trunk/www/update_1.10.x/artifacts.jar HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops

-(398)-
[2013-06-18T09:17:39.921642-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 404 Not Found
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
Content-Type: text/html; charset=iso-8859-1


-(124)-
Adding  (bin)  update_1.10.x/content.jar
[2013-06-18T09:17:39.922220-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
HEAD /svn/subclipse/trunk/www/update_1.10.x/content.jar HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops

-(396)-
[2013-06-18T09:17:40.049477-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 404 Not Found
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
Content-Type: text/html; charset=iso-8859-1


-(124)-
Adding  (bin)  
update_1.10.x/features/org.tigris.subversion.clientadapter.feature_1.10.0.jar
[2013-06-18T09:17:40.050463-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
CHECKOUT /svn/subclipse/!svn/ver/5706/trunk/www/update_1.10.x/features HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Content-Type: text/xml
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops
Transfer-Encoding: chunked

e5
<?xml version="1.0" encoding="utf-8"?><D:checkout 
xmlns:D="DAV:"><D:activity-set><D:href>/svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e</D:href></D:activity-set><D:apply-to-version></D:apply-to-version></D:checkout>
0

-(703)-
[2013-06-18T09:17:40.171850-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 201 Created
Date: Tue, 18 Jun 2013 13:17:37 GMT
Server: Apache
HelmLoginID: markphip
Cache-Control: no-cache
Location: 
http://subclipse.tigris.org/svn/subclipse/!svn/wrk/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e/trunk/www/update_1.10.x/features
Content-Length: 349
Content-Type: text/html; charset=ISO-8859-1


-(323)-
[2013-06-18T09:17:40.173550-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
buckets/socket_buckets.c: socket_recv error 70014
[2013-06-18T09:17:41.021136-04] [l:204.11.125.145:65477 r:204.16.104.146:80] 
./outgoing.c: closed socket, status 0
[2013-06-18T09:17:41.021182-04] ./outgoing.c: reset connection 0x588d4a28
[2013-06-18T09:17:41.021217-04] ./outgoing.c: created socket for conn 
0x588d4a28, status 0
[2013-06-18T09:17:41.021301-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
./outgoing.c: connected socket for conn 0x588d4a28, status 36
[2013-06-18T09:17:41.149533-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
./outgoing.c: --- socket_sendv:
DELETE /svn/subclipse/!svn/act/5ea43b8a-0d4e-4ef0-8c62-5be2e0291f8e HTTP/1.1
Host: subclipse.tigris.org
Authorization: Basic xxxxxxxxxxxxxxxxxx
User-Agent: SVN/1.8.0 (x86_64-apple-darwin11.4.2) serf/1.2.1
Accept-Encoding: gzip
DAV: http://subversion.tigris.org/xmlns/dav/svn/depth
DAV: http://subversion.tigris.org/xmlns/dav/svn/mergeinfo
DAV: http://subversion.tigris.org/xmlns/dav/svn/log-revprops

-(408)-
[2013-06-18T09:17:41.345451-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
buckets/socket_buckets.c: --- socket_recv:
HTTP/1.1 204 No Content
Date: Tue, 18 Jun 2013 13:17:38 GMT
Server: Apache
HelmLoginID: markphip
Content-Length: 0
Content-Type: text/plain


-(148)-
subversion/svn/commit-cmd.c:183,
subversion/libsvn_client/commit.c:1030,
subversion/libsvn_client/commit.c:154: (apr_err=120106)
svn: E120106: Commit failed (details follow):
subversion/libsvn_client/commit.c:958,
subversion/libsvn_client/commit_util.c:1808,
subversion/libsvn_delta/path_driver.c:263,
subversion/libsvn_client/commit_util.c:1758,
subversion/libsvn_ra_serf/commit.c:1891,
subversion/libsvn_ra_serf/commit.c:312,
subversion/libsvn_ra_serf/util.c:819,
subversion/libsvn_ra_serf/util.c:786: (apr_err=120106)
svn: E120106: Error running context: The server sent a truncated HTTP response 
body.
[2013-06-18T09:17:41.348341-04] [l:204.11.125.145:65478 r:204.16.104.146:80] 
./outgoing.c: cleanup - closed socket, status 9
[2013-06-18T09:17:41.348385-04] ./outgoing.c: cleaning up connection 0x588d4a28
[2013-06-18T09:17:41.348401-04] ./outgoing.c: closed connection 0x588d4a28

Reply via email to