You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're asking a question, rather than reporting a bug or requesting a feature, **please post your question on the [mailing list](https://groups.google.com/forum/#!forum/wiremock-user), and do not open an issue**.
4
+
5
+
Please do not log bugs regarding classpath issues (typically manifesting as 'NoClassDefFoundException' or 'ClassNotFoundException').
6
+
These are not WireMock bugs, and need to be diagnosed for your project using your build tool. Plenty has already been written in WireMock's issues and mailing list about how to resolve these issues
7
+
so please search these sources before asking for help.
8
+
9
+
## Bug reports
10
+
11
+
We're a lot more likely to look at and fix bugs that are clearly described and reproduceable. Please including the following details when reporting a bug:
12
+
13
+
-[ ] Which version of WireMock you're using
14
+
-[ ] How you're starting and configuring WireMock, including configuration or CLI the command line
15
+
-[ ] A failing test case that demonstrates the problem
16
+
-[ ] Profiler data if the issue is performance related
17
+
18
+
## Feature requests
19
+
20
+
Please include details of the use case and motivation for a feature when suggesting it.
jetty : '9.2.24.v20180105', // Please don't raise PRs upgrading this to the latest version as it drops Java 7 support. See https://github.com/tomakehurst/wiremock/issues/407 and https://github.com/tomakehurst/wiremock/pull/887 for details
Copy file name to clipboardExpand all lines: docs-v2/_docs/configuration.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,12 @@ Typically it is only necessary to tweak these settings if you are doing performa
54
54
55
55
// Set the size of Jetty's header buffer (to avoid exceptions when very large request headers are sent). Defaults to 8192.
56
56
.jettyHeaderBufferSize(16834)
57
+
58
+
// Enable asynchronous request processing in Jetty. Recommended when using WireMock for performance testing with delays, as it allows much more efficient use of container threads and therefore higher throughput. Defaults to false.
59
+
.asynchronousResponseEnabled(true)
60
+
61
+
// Set the number of asynchronous response threads. Effective only with asynchronousResponseEnabled=true. Defaults to 10.
0 commit comments