forked from TrueCloudLab/xk6-frostfs
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
|
import datagen from 'k6/x/frostfs/datagen';
|
||
|
|
||
|
export function newGenerator(condition) {
|
||
|
if (condition) {
|
||
|
return datagen.generator(1024 * parseInt(__ENV.WRITE_OBJ_SIZE), __ENV.PAYLOAD_TYPE || "");
|
||
|
}
|
||
|
return undefined;
|
||
|
}
|