Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to 2.11 #381

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/install_dev_env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ runs:
id: download-mesh-server
with:
GITHUB_TOKEN: ${{ inputs.token }}
MESH_SERVICE_TAG: 'v2.10.0.11'
MESH_SERVICE_TAG: 'v2.11.0.13'
2 changes: 1 addition & 1 deletion .github/workflows/usage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id: download-mesh-server
with:
GITHUB_TOKEN: ${{ secrets.OAUTH_TOKEN }}
MESH_SERVICE_TAG: 'v2.10.0.11'
MESH_SERVICE_TAG: 'v2.11.0.13'

# run one example before installing pytest packages and pandas
# to check if all dependencies are installed together with Mesh Python SDK pip package
Expand Down
2 changes: 1 addition & 1 deletion src/volue/mesh/tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_can_connect_to_existing_session(connection):
same_session.close()
# Closing a session on the server is not a blocking call,
# so there is not telling how long closing a session will take.
sleep(1)
sleep(61)
with pytest.raises(grpc.RpcError) as info:
session.close()
assert info.type == grpc._channel._InactiveRpcError
Expand Down