View | Details | Raw Unified | Return to bug 57026
Collapse All | Expand All

(-)bin/jmeter.properties (-3 / +3 lines)
Lines 541-551 Link Here
541
# properties have the prefix "proxy".
541
# properties have the prefix "proxy".
542
#---------------------------------------------------------------------------
542
#---------------------------------------------------------------------------
543
543
544
# If the recorder detects a gap of at least 1s (default) between HTTP requests,
544
# If the recorder detects a gap of at least 5s (default) between HTTP requests,
545
# it assumes that the user has clicked a new URL
545
# it assumes that the user has clicked a new URL
546
#proxy.pause=1000
546
#proxy.pause=5000
547
547
548
# Add numeric prefix to Sampler names (default false)
548
# Add numeric prefix to Sampler names (default true)
549
#proxy.number.requests=true
549
#proxy.number.requests=true
550
550
551
# List of URL patterns that will be added to URL Patterns to exclude
551
# List of URL patterns that will be added to URL Patterns to exclude
(-)src/protocol/http/org/apache/jmeter/protocol/http/proxy/AbstractSamplerCreator.java (-1 / +1 lines)
Lines 63-69 Link Here
63
     * Optionally number the requests
63
     * Optionally number the requests
64
     */
64
     */
65
    private static final boolean numberRequests =
65
    private static final boolean numberRequests =
66
        JMeterUtils.getPropDefault("proxy.number.requests", false); // $NON-NLS-1$
66
        JMeterUtils.getPropDefault("proxy.number.requests", true); // $NON-NLS-1$
67
67
68
    private static volatile int requestNumber = 0;// running number
68
    private static volatile int requestNumber = 0;// running number
69
    
69
    
(-)src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java (-1 / +1 lines)
Lines 163-169 Link Here
163
    private static final String SAMPLER_TYPE_HTTP_SAMPLER_HC4 = "2";
163
    private static final String SAMPLER_TYPE_HTTP_SAMPLER_HC4 = "2";
164
164
165
    private static final long sampleGap =
165
    private static final long sampleGap =
166
        JMeterUtils.getPropDefault("proxy.pause", 1000); // $NON-NLS-1$
166
        JMeterUtils.getPropDefault("proxy.pause", 5000); // $NON-NLS-1$
167
    // Detect if user has pressed a new link
167
    // Detect if user has pressed a new link
168
168
169
    // for ssl connection
169
    // for ssl connection

Return to bug 57026