Needs to be documented in changes.xml
On 27 September 2014 20:25, <[email protected]> wrote: > Author: pmouawad > Date: Sat Sep 27 19:25:47 2014 > New Revision: 1627989 > > URL: http://svn.apache.org/r1627989 > Log: > Bug 57026 - HTTP(S) Test Script Recorder : Better default settings > Bugzilla Id: 57026 > > Modified: > jmeter/trunk/bin/jmeter.properties > > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java > > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java > > Modified: jmeter/trunk/bin/jmeter.properties > URL: > http://svn.apache.org/viewvc/jmeter/trunk/bin/jmeter.properties?rev=1627989&r1=1627988&r2=1627989&view=diff > ============================================================================== > --- jmeter/trunk/bin/jmeter.properties (original) > +++ jmeter/trunk/bin/jmeter.properties Sat Sep 27 19:25:47 2014 > @@ -541,11 +541,11 @@ upgrade_properties=/bin/upgrade.properti > # properties have the prefix "proxy". > #--------------------------------------------------------------------------- > > -# If the recorder detects a gap of at least 1s (default) between HTTP > requests, > +# If the recorder detects a gap of at least 5s (default) between HTTP > requests, > # it assumes that the user has clicked a new URL > -#proxy.pause=1000 > +#proxy.pause=5000 > > -# Add numeric prefix to Sampler names (default false) > +# Add numeric prefix to Sampler names (default true) > #proxy.number.requests=true > > # List of URL patterns that will be added to URL Patterns to exclude > > Modified: > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java > URL: > http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java?rev=1627989&r1=1627988&r2=1627989&view=diff > ============================================================================== > --- > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java > (original) > +++ > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java > Sat Sep 27 19:25:47 2014 > @@ -63,7 +63,7 @@ public abstract class AbstractSamplerCre > * Optionally number the requests > */ > private static final boolean numberRequests = > - JMeterUtils.getPropDefault("proxy.number.requests", false); // > $NON-NLS-1$ > + JMeterUtils.getPropDefault("proxy.number.requests", true); // > $NON-NLS-1$ > > private static volatile int requestNumber = 0;// running number > > > Modified: > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java > URL: > http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java?rev=1627989&r1=1627988&r2=1627989&view=diff > ============================================================================== > --- > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java > (original) > +++ > jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java > Sat Sep 27 19:25:47 2014 > @@ -163,7 +163,7 @@ public class ProxyControl extends Generi > private static final String SAMPLER_TYPE_HTTP_SAMPLER_HC4 = "2"; > > private static final long sampleGap = > - JMeterUtils.getPropDefault("proxy.pause", 1000); // $NON-NLS-1$ > + JMeterUtils.getPropDefault("proxy.pause", 5000); // $NON-NLS-1$ > // Detect if user has pressed a new link > > // for ssl connection > >
