Skip to content

Commit

Permalink
RAI-16417 RAI-16420 Updated Julia SDK to use HTTP v1.9.15 or higher, …
Browse files Browse the repository at this point in the history
…increased HTTP pool to 4096 * 4 (#122)

* updated Julia SDK to use HTTP v1.9.15 or higher, increased HTTP pool

* updated CHANGELOG
  • Loading branch information
antikus authored Sep 15, 2023
1 parent 3204e03 commit 5ff01e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## main

## v0.2.8
* Updated HTTP lib to v1.9.15

## v0.2.2
* Add timeout/keep-alive options for access token
* Add custom engine version support for integration tests
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Arrow = "2"
ConfParser = "0.1"
EnumX = "1"
ExceptionUnwrapping = "0.1"
HTTP = "1.8"
HTTP = "1.9.15"
JSON3 = "1"
Mocking = "0.7"
ProtoBuf = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/rest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function _authenticate!(
return nothing
end

const POOL = HTTP.Pool(4096)
const POOL = HTTP.Pool(4096 * 4)

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

2 comments on commit 5ff01e1

@antikus
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/90598

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.8 -m "<description of version>" 5ff01e14fc61e7ac3f0cb22d4b63b1ee0048f88d
git push origin v0.2.8

Please sign in to comment.