Skip to content

Commit 5ff01e1

Browse files
author
Anatoli Kurtsevich
authored
RAI-16417 RAI-16420 Updated Julia SDK to use HTTP v1.9.15 or higher, increased HTTP pool to 4096 * 4 (#122)
* updated Julia SDK to use HTTP v1.9.15 or higher, increased HTTP pool * updated CHANGELOG
1 parent 3204e03 commit 5ff01e1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## main
44

5+
## v0.2.8
6+
* Updated HTTP lib to v1.9.15
7+
58
## v0.2.2
69
* Add timeout/keep-alive options for access token
710
* Add custom engine version support for integration tests

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Arrow = "2"
2222
ConfParser = "0.1"
2323
EnumX = "1"
2424
ExceptionUnwrapping = "0.1"
25-
HTTP = "1.8"
25+
HTTP = "1.9.15"
2626
JSON3 = "1"
2727
Mocking = "0.7"
2828
ProtoBuf = "1"

src/rest.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function _authenticate!(
176176
return nothing
177177
end
178178

179-
const POOL = HTTP.Pool(4096)
179+
const POOL = HTTP.Pool(4096 * 4)
180180

181181
# Note, this function is deliberately patterend on the HTTP.jl request funciton.
182182
function request(

0 commit comments

Comments
 (0)