Bug 57577 - HttpSampler : Retrieve All Embedded Resources should only compute size or hash by default

Take into account sebb notes
Bugzilla Id: 57577

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1730969 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: 89d0fa45b5
This commit is contained in:
Philippe Mouawad 2016-02-17 23:00:34 +00:00
parent afe8ef595e
commit c49b83d703
3 changed files with 4 additions and 4 deletions

View File

@ -996,9 +996,9 @@ beanshell.server.file=../extras/startup.bsh
# Parent sample will not be marked as failed
#httpsampler.ignore_failed_embedded_resources=false
# ignore the embedded resources response data : just keep the size and the md5
# Don't keep the embedded resources response data : just keep the size and the md5
# default to false
#httpsampler.ignore_embedded_resources_data=true
#httpsampler.embedded_resources_use_md5=false
# The encoding to be used if none is provided (default ISO-8859-1)
#sampleresult.default.encoding=ISO-8859-1

View File

@ -199,7 +199,7 @@ public abstract class HTTPSamplerBase extends AbstractSampler
public static final int CONCURRENT_POOL_SIZE = 4; // Default concurrent pool size for download embedded resources
private static final boolean IGNORE_EMBEDDED_RESOURCES_DATA =
JMeterUtils.getPropDefault("httpsampler.ignore_embedded_resources_data", false); // $NON-NLS-1$ // default value: false
JMeterUtils.getPropDefault("httpsampler.embedded_resources_use_md5", false); // $NON-NLS-1$ // default value: false
public static enum SourceType {
HOSTNAME("web_testing_source_ip_hostname"), //$NON-NLS-1$

View File

@ -110,7 +110,7 @@ Summary
<li><bug>59005</bug>HTTP Sampler : Added WebDAV verb (SEARCH).</li>
<li><bug>59006</bug>Change Default proxy recording port to 8888 to align it with Recording Template. Contributed by Antonio Gomes Rodrigues (ra0077 at gmail.com)</li>
<li><bug>58099</bug>Performance : Lazily initialize HttpClient SSL Context to avoid its initialization even for HTTP only scenarios</li>
<li><bug>57577</bug>HttpSampler : Retrieve All Embedded Resources should only compute size or hash by default. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
<li><bug>57577</bug>HttpSampler : Retrieve All Embedded Resources, add property "httpsampler.embedded_resources_use_md5" to only compute md5 and not keep response data. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
<li><bug>59023</bug>HttpSampler UI : rework the embedded resources labels and change default number of parallel downloads to 6. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
</ul>