Skip to content

Commit 296d3c4

Browse files
committed
version bump + docs
1 parent af6ee2a commit 296d3c4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ Then you can refer to seatsio-java as a regular package:
3030
```
3131
// build.gradle
3232
dependencies {
33-
compile 'com.github.seatsio:seatsio-java:70.1.0'
33+
compile 'com.github.seatsio:seatsio-java:70.2.0'
3434
}
3535
3636
// pom.xml
3737
<dependency>
3838
<groupId>com.github.seatsio</groupId>
3939
<artifactId>seatsio-java</artifactId>
40-
<version>70.1.0</version>
40+
<version>70.2.0</version>
4141
</dependency>
4242
```
4343

@@ -260,3 +260,6 @@ It's perfectly fine to re-use an instance of `SeatsioClient` in different thread
260260
We manage a connection pool under the hood, to avoid having to reconnect to the seats.io server on every call. This pool supports 200 concurrent connections.
261261

262262
The connection pool is shared between all instances of `SeatsioClient`.
263+
264+
In some cases, e.g. when you're running automated test suite against a seats.io stub, it may be useful to reset the connection pool between tests.
265+
To do so, call `seatsioClient.reinitializeHttpConnectionPool()`.

0 commit comments

Comments
 (0)