Forum Discussion
max80
14 years agoOccasional Contributor
It looks even when I wrap update script in synchronized I observe the same race condition:
Am I doing something wrong or is there a bug in the tool?
synchronized (context.LoadTestContext) {
def mycounter = context.LoadTestContext['counter'].toInteger()
mycounter++
context.LoadTestContext['counter'] = mycounter
}
Am I doing something wrong or is there a bug in the tool?