[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1502440 - in /subversion/branches/1.8.x-tristate-chunked-request: ./ subversion/libsvn_ra_serf/serf.c subversion/libsvn_ra_serf/util.c subversion/libsvn_subr/config_file.c

From: Greg Stein <gstein_at_gmail.com>
Date: Fri, 12 Jul 2013 15:59:47 -0400

On Fri, Jul 12, 2013 at 2:53 AM, <breser_at_apache.org> wrote:
>...
> +++ subversion/branches/1.8.x-tristate-chunked-request/subversion/libsvn_ra_serf/serf.c Fri Jul 12 06:53:40 2013
>...
> @@ -293,12 +293,11 @@ load_config(svn_ra_serf__session_t *sess
> SVN_CONFIG_OPTION_HTTP_MAX_CONNECTIONS,
> session->max_connections));
>
> - /* Do we need to take care with this proxy? */
> - SVN_ERR(svn_config_get_bool(
> - config, &session->detect_chunking,
> - server_group,
> - OPTION_HTTP_DETECT_CHUNKING,
> - session->detect_chunking));
> + /* Should we use chunked transfer encoding. */
> + SVN_ERR(svn_config_get_tristate(config, &chunked_requests,
> + server_group,
> + OPTION_HTTP_CHUNKED_REQUESTS,
> + "auto", svn_tristate_unknown));

The last parameter should be chunked_requests (ie. use the value from
the global options).

>...

Cheers,
-g
Received on 2013-07-12 22:00:20 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.