我正在使用 gatling gradle 插件,并且正在尝试增加默认超时。
这行不通。我不断得到
> i.g.h.c.i.RequestTimeoutException: Request timeout to localhos 47 (94,00%)
t/127.0.0.1:8080 after 60000 ms
我的 gatling.conf 是
gatling {
core {
http {
pooledConnectionIdleTimeout = 600000 # Timeout in millis for a connection to stay idle in the pool
requestTimeout = 1000000 # Timeout in millis for performing an HTTP request
}
}
}
我试图破坏我的 gatling.conf 并建立废墟
/build/resources/gatling/gatling.conf: 8: Key 'qd qw qd qd' may not be followed by token: 'core' (if you intended 'core' to be part of a key or string value, try enclosing the key or value in double quotes)
所以加特林真的试图读取我的文件,但不想覆盖设置。
谁知道如何覆盖它?