Skip to content

Commit a6aaf00

Browse files
Minor change in doc
1 parent 5895862 commit a6aaf00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guide/protocols/http/keepAlive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ By default, **JMeter Java DSL** uses a persistent HTTP connection (sending the `
44

55
To force server to close the connection after each request, you can disable keep-alive with `.useKeepAlive(false)` either on an individual `httpSampler` or globally on `httpDefaults`.
66

7-
This can be useful when you’re load-testing an API that enforces a strict limit on the number of simultaneous sockets per client. If you leave keep-alive enabled, each virtual user will hold its socket open for the duration of the test, consuming the gateway’s connection pool.
7+
This can be useful when you’re load-testing an API that enforces a strict limit on the number of simultaneous sockets per client. If you leave keep-alive enabled, each thread will hold its socket open for the duration of the test, consuming the server's connection resources.
88

99
```java
1010
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;

0 commit comments

Comments
 (0)