https://bz.apache.org/bugzilla/show_bug.cgi?id=54453
--- Comment #11 from Andrey Pokhilko <[email protected]> --- This fix introduced issue, on Jmeter 2.12 function __random(1,1) works, on 2.13 now works. It is because the change is: - long rand = min + (long) (Math.random() * (max - min + 1)); + long rand = ThreadLocalRandom.current().nextLong(min, max); and new version lost "+1" boundary shift... -- You are receiving this mail because: You are the assignee for the bug.
