You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2016/05/10 02:30:03 UTC

[Bug 59448] Constant Throughput Controller disabled by specifying negative value

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

--- Comment #1 from olivernz <jm...@erlewein.org> ---
I'd add something like this in the file ConstantThroughputTimer.java. Please
note though that I am not a Java dev by any interpretation. So might be totally
off. And I don't (yet) have a JMeter dev environment so can't do a feature.

   // Calculate the delay based on the mode
   private long calculateDelay() {
      long delay = 0;
      if (throughput < 0.0) {
          return delay;
          break;
      }

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