Update toString() method of ParamFlowRule
Signed-off-by: Eric Zhao <sczyh16@gmail.com>
This commit is contained in:
parent
c316211faf
commit
5f713bd404
|
|
@ -233,4 +233,20 @@ public class ParamFlowRule extends AbstractRule {
|
||||||
result = 31 * result + (clusterConfig != null ? clusterConfig.hashCode() : 0);
|
result = 31 * result + (clusterConfig != null ? clusterConfig.hashCode() : 0);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ParamFlowRule{" +
|
||||||
|
"grade=" + grade +
|
||||||
|
", paramIdx=" + paramIdx +
|
||||||
|
", count=" + count +
|
||||||
|
", controlBehavior=" + controlBehavior +
|
||||||
|
", maxQueueingTimeMs=" + maxQueueingTimeMs +
|
||||||
|
", burstCount=" + burstCount +
|
||||||
|
", durationInSec=" + durationInSec +
|
||||||
|
", paramFlowItemList=" + paramFlowItemList +
|
||||||
|
", clusterMode=" + clusterMode +
|
||||||
|
", clusterConfig=" + clusterConfig +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue