Skip to content

Commit

Permalink
hotfix: A typo in #1938
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Feb 28, 2024
1 parent eb1ecb1 commit 714c119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ai/backend/client/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Undefined(enum.Enum):
_config = None
_undefined = Undefined.token

API_VERSION = (8, "20240615")
API_VERSION = (8, "20240315")
MIN_API_VERSION = (7, "20230615")

DEFAULT_CHUNK_SIZE = 16 * (2**20) # 16 MiB
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def _negotiate_api_version(
)
if server_version < MIN_API_VERSION:
warnings.warn(
"The server is too old and does not meet the minimum API version"
"The server is too old ({server_version}) and does not meet the minimum API version"
f" requirement: v{MIN_API_VERSION[0]}.{MIN_API_VERSION[1]}\nPlease upgrade"
" the server or downgrade/reinstall the client SDK with the same"
" major.minor release of the server.",
Expand Down

0 comments on commit 714c119

Please sign in to comment.