diff --git a/VERSION b/VERSION index 48a392e..daf2399 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.11.2 +10.11.3 diff --git a/clarifai_grpc/channel/clarifai_channel.py b/clarifai_grpc/channel/clarifai_channel.py index bc38e1a..837ff6e 100644 --- a/clarifai_grpc/channel/clarifai_channel.py +++ b/clarifai_grpc/channel/clarifai_channel.py @@ -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"], }, } diff --git a/clarifai_grpc/channel/http_client.py b/clarifai_grpc/channel/http_client.py index f208904..c718d77 100644 --- a/clarifai_grpc/channel/http_client.py +++ b/clarifai_grpc/channel/http_client.py @@ -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( diff --git a/setup.py b/setup.py index a8d9554..2ad9c93 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="clarifai-grpc", - version="10.11.2", + version="10.11.3", author="Clarifai", author_email="support@clarifai.com", description="Clarifai gRPC API Client",