|
在Controller中运行时errors中出现错误:
Error: Parameter 'FepPort': All values in unique block already used. Block size is 100. The parameter continues with last value of the range according to "When Out Of Values" policy.
我设置的场景只有一个用户运行,duration设置运行5分钟
脚本如下:
vuser_init()
{
lrs_create_socket("socket1", "TCP", "RemoteHost=172.16.100.109:8001", LrsLastArg);
lrs_send("socket1", "buf0", LrsLastArg);
lrs_receive("socket1", "buf1", LrsLastArg);
lr_think_time(8);
return 0;
}
Action()
{
lrs_send("socket1", "buf8", LrsLastArg);
lrs_receive("socket1","buf9",LrsLastArg);
return 0;
}
vuser_end()
{
lrs_close_socket("socket1");
lrs_cleanup();
return 0;
}
在脚本中我现在都取了固定值进行发送
请问为什么会出现上面提到的那个错误呢? |
|