Forum Discussion
PM_r
Staff
13 years agoHmmm, when taking a closer look:
The request and testCase objects are shared resources which you are modifying. You need to synchronize all of the code touching those objects. This will probably damage performance, but you can try to see what happens. Try to make this synchronized block as small as possible (move down the instantiation of request?).
Regards
Henrik O
SmartBear
The request and testCase objects are shared resources which you are modifying. You need to synchronize all of the code touching those objects. This will probably damage performance, but you can try to see what happens. Try to make this synchronized block as small as possible (move down the instantiation of request?).
Regards
Henrik O
SmartBear