mirror of https://github.com/apache/jmeter.git
Bug 53511 - access log sampler SessionFilter throws NullPointerException - cookie manager not initialized properly
Bugzilla Id: 53511
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1363120 13f79535-47bb-0310-9956-ffa450edef68
Former-commit-id: fb5af5343b
This commit is contained in:
parent
46fbdf4fa4
commit
468df6be21
|
|
@ -174,6 +174,7 @@ public class SessionFilter implements Filter, Serializable, TestCloneable,Thread
|
|||
if(cm == null)
|
||||
{
|
||||
cm = new CookieManager();
|
||||
cm.testStarted();
|
||||
cookieManagers.put(ipAddr,cm);
|
||||
}
|
||||
while(managersInUse.contains(cm))
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@ JSR223 Test Elements using Script file are now Compiled if ScriptEngine supports
|
|||
<li><bugzilla>53348</bugzilla> - JMeter JMS Point-to-Point Request-Response sampler doesn't work when Request-queue and Receive-queue are different</li>
|
||||
<li><bugzilla>53357</bugzilla> - JMS Point to Point reports too high response times in Request Response Mode</li>
|
||||
<li><bugzilla>53440</bugzilla> - SSL connection leads to ArrayStoreException on JDK 6 with some KeyManagerFactory SPI</li>
|
||||
<li><bugzilla>53511</bugzilla> - access log sampler SessionFilter throws NullPointerException - cookie manager not initialized properly</li>
|
||||
</ul>
|
||||
|
||||
<h3>Controllers</h3>
|
||||
|
|
|
|||
Loading…
Reference in New Issue