Squashed commit of the following:
commit
7cc62215d8d2a46b68e20ccf96350f659089ecf0
Author: Puneeth Kumar C V <puneetku@cisco.com>
Date: Sun Jun 14 21:01:45 2020 -0400
perf_monitor: fix count and interval during disable cli execution
PerfConstraints* PerfMonitor::get_original_constraints()
{
- auto* new_constraints = new PerfConstraints(false, config->pkt_cnt,
- config->sample_interval);
+ auto* new_constraints = new PerfConstraints(false, config->sample_interval,
+ config->pkt_cnt);
return new_constraints;
}