Skip to content

Commit

Permalink
[EAGLE-5310]: 10.11.3 Update clarifai_channel.py retry latency (#200)
Browse files Browse the repository at this point in the history
* Update clarifai_channel.py retry latency

* bump version as well
  • Loading branch information
zeiler authored Jan 7, 2025
1 parent 168a80b commit fe33a14
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.11.2
10.11.3
4 changes: 2 additions & 2 deletions clarifai_grpc/channel/clarifai_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"name": [{"service": "clarifai.api.V2"}],
"retryPolicy": {
"maxAttempts": 5,
"initialBackoff": "1s",
"initialBackoff": "0.01s",
"maxBackoff": "5s",
"backoffMultiplier": 1.5,
"backoffMultiplier": 2,
"retryableStatusCodes": ["UNAVAILABLE"],
},
}
Expand Down
2 changes: 1 addition & 1 deletion clarifai_grpc/channel/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from clarifai_grpc.channel.errors import ApiError

CLIENT_VERSION = "10.11.2"
CLIENT_VERSION = "10.11.3"
OS_VER = os.sys.platform
PYTHON_VERSION = ".".join(
map(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="clarifai-grpc",
version="10.11.2",
version="10.11.3",
author="Clarifai",
author_email="[email protected]",
description="Clarifai gRPC API Client",
Expand Down

0 comments on commit fe33a14

Please sign in to comment.