File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
httpclient/src/main/java/com/backblaze/b2/client/webApiHttpClient Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 55* Fixed ` B2StorageClient.deleteAllFilesInBucket ` so it uses ` fileVersions ` instead of ` fileNames ` .
66* Added ` maxEventsPerBatch ` field to ` B2WebhookConfiguration ` .
77
8+ ### Changed
9+ * Validate idle connections after 2 seconds of inactivity
10+
811## [ 6.2.1] - 2024-07-16
912### Added
1013* Added ` eventId ` field to ` B2EventNotificationEvent ` .
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ private HttpClientConnectionManager createConnectionManager() {
207207 final PoolingHttpClientConnectionManager mgr = new PoolingHttpClientConnectionManager (registry );
208208 mgr .setMaxTotal (maxTotalConnectionsInPool );
209209 mgr .setDefaultMaxPerRoute (maxConnectionsPerRoute );
210+ mgr .setValidateAfterInactivity (2000 );
210211 return mgr ;
211212 }
212213 }
You can’t perform that action at this time.
0 commit comments