You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/12/25 02:39:25 UTC

svn commit: r1553343 - /subversion/trunk/subversion/libsvn_ra_serf/util.c

Author: rhuijben
Date: Wed Dec 25 01:39:25 2013
New Revision: 1553343

URL: http://svn.apache.org/r1553343
Log:
In libsvn_ra_serf: following up on r1066917 and r1553341, stop resetting
the connection while looking for a vcc url because we assume serf blocks
the connection from further use, as it no longer does that on these error
conditions.

* subversion/libsvn_ra_serf/util.c
  (svn_ra_serf__discover_vcc): Remove now unnecessary connection reset.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/util.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/util.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/util.c?rev=1553343&r1=1553342&r2=1553343&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/util.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/util.c Wed Dec 25 01:39:25 2013
@@ -2404,11 +2404,6 @@ svn_ra_serf__discover_vcc(const char **v
 
               /* Okay, strip off a component from PATH. */
               path = svn_urlpath__dirname(path, pool);
-
-              /* An error occurred on conns. serf 0.4.0 remembers that
-                 the connection had a problem. We need to reset it, in
-                 order to use it again.  */
-              serf_connection_reset(conn->conn);
             }
         }
     }