https://bz.apache.org/bugzilla/show_bug.cgi?id=58209

--- Comment #1 from Ejay <[email protected]> ---
Invoking HashMap.put() from multiple threads casue jmeter hanging

I think the solution is:
change java file
:src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java   
at line 60 

   //private static final Set<JavaSampler> TEAR_DOWN_SET = new
HashSet<JavaSampler>();
    private static final Set<JavaSampler> TEAR_DOWN_SET = 
Collections.newSetFromMap(new ConcurrentHashMap<JavaSampler,Boolean>());

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to