> org.apache.jmeter.NewDriver > java.util.ConcurrentModificationException > at java.util.HashMap$HashIterator.nextEntry(HashMap.java:750) > at java.util.HashMap$KeyIterator.next(HashMap.java:786) > at > org.apache.jmeter.threads.TestCompiler.hasFunctions(TestCompiler.java:498) > at > org.apache.jmeter.threads.TestCompiler.saveSamplerConfigs(TestCompiler.java >: 196) > at
It's probably obvious, but HashMap implementation is not synchronized by itself (HashTable is) and needs to be synchronized externally. You've said you have only one thread, but you haven't :-) You have one thread group in your scenario, but jmeter creates some addidional threads (for notifying for example) so synchronization issues are possible. I would wait for Mike's opinion, but perhaps it should be marked as bug... best regards Michal Kostrzewa -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
