You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/10/22 18:19:00 UTC

svn commit: r1812939 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java xdocs/changes.xml

Author: pmouawad
Date: Sun Oct 22 18:19:00 2017
New Revision: 1812939

URL: http://svn.apache.org/viewvc?rev=1812939&view=rev
Log:
Bug 61644 - HTTP Cache Manager: "Use Cache-Control/Expires header when processing GET requests" should be checked by default
Bugzilla Id: 61644

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java?rev=1812939&r1=1812938&r2=1812939&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CacheManagerGui.java Sun Oct 22 18:19:00 2017
@@ -104,7 +104,7 @@ public class CacheManagerGui extends Abs
     public void clearGui() {
         super.clearGui();
         clearEachIteration.setSelected(false);
-        useExpires.setSelected(false);
+        useExpires.setSelected(true);
         maxCacheSize.setText(""); //$NON-NLS-1$
     }
 

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1812939&r1=1812938&r2=1812939&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Sun Oct 22 18:19:00 2017
@@ -99,6 +99,7 @@ Summary
 <h3>Timers, Assertions, Config, Pre- &amp; Post-Processors</h3>
 <ul>
     <li><bug>60213</bug>Boundary based extractor</li>
+    <li><bug>61644</bug>HTTP Cache Manager: "Use Cache-Control/Expires header when processing GET requests" should be checked by default</li>
 </ul>
 
 <h3>Functions</h3>