Gatling scala gradle,如何设置 requestTimeout

Gatling scala gradle, HowTo set requestTimeout

我正在使用 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)

所以 gatling 确实尝试读取我的文件但不想覆盖设置。

谁知道如何覆盖它?

你的配置文件有误

您的文件,格式正确:

gatling {
  core {
    http {
      requestTimeout = 1000000
    }
  }
}

应该如何,就像在 documentation:

gatling {
  core {
    # core options
  }
  http {
    requestTimeout = 1000000
  }
}