Skip to content

Commit 355d466

Browse files
authored
Bump up default connection_limit (#81)
* Bump up default connection_limit As we did in https://github.com/RelationalAI/raicode/commit/29ce2059fdf61eebb44e6fa888c8e247f5689233 * mention CHANGELOG
1 parent a725151 commit 355d466

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.2.1
4+
* Increased `connection_limit` to 4096
5+
36
## v0.2.0
47
* Deprecate metadata JSON format.
58
* Add support to deserialize ProtoBuf metadata.

src/rest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,6 @@ function request(
120120
isnothing(body) && (body = UInt8[])
121121
headers = _ensure_headers!(headers)
122122
_authenticate!(ctx, headers)
123-
opts = (;redirect = false)
123+
opts = (;redirect = false, connection_limit = 4096)
124124
return HTTP.request(method, url, headers; query = query, body = body, opts..., kw...)
125125
end

0 commit comments

Comments
 (0)