Skip to content

Commit

Permalink
Switch to 2.11 (#381)
Browse files Browse the repository at this point in the history
* Switch to 2.11

* Extend session destroy timeout
  • Loading branch information
tnoczyns-volue authored Nov 7, 2023
1 parent b99a2a2 commit 2aaecd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 2aaecd8

Please sign in to comment.