0

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

所以加特林真的试图读取我的文件,但不想覆盖设置。

谁知道如何覆盖它?

4

1 回答 1

2

你的配置文件是错误的。

您的文件,格式正确:

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

它应该是怎样的,就像在文档中一样:

gatling {
  core {
    # core options
  }
  http {
    requestTimeout = 1000000
  }
}
于 2021-05-29T07:53:43.940 回答