We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac41bd commit 6aed282Copy full SHA for 6aed282
packages/generator-caliper/generators/benchmark/index.js
@@ -104,6 +104,7 @@ module.exports = class extends Generator {
104
{name: 'Fixed Backlog', value: 'fixed-backlog'},
105
{name: 'Linear Rate', value: 'linear-rate'},
106
{name: 'Fixed Feedback Rate', value: 'fixed-feedback-rate'}
107
+ {name: 'Fixed Load', value: "fixed-load"}
108
],
109
when: () => !this.options.rateController
110
}, {
@@ -273,7 +274,7 @@ module.exports = class extends Generator {
273
274
this._configWrite();
275
break;
276
case 'fixed-load':
- answersObject.opts = 'startTps:10, transactionLoad:20';
277
+ answersObject.opts = 'startTps: 10, transactionLoad: 20';
278
279
280
}
0 commit comments