We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a2276 commit a785536Copy full SHA for a785536
tests/e2e/test_driver.py
@@ -822,7 +822,8 @@ def test_close_connection_closes_cursors(self):
822
# We must manually run this check because thrift_backend always forces `has_been_closed_server_side` to True
823
# Cursor op state should be open before connection is closed
824
status_request = ttypes.TGetOperationStatusReq(
825
- operationHandle=ars.command_id, getProgressUpdate=False
+ operationHandle=ars.command_id.to_thrift_handle(),
826
+ getProgressUpdate=False,
827
)
828
op_status_at_server = ars.backend._client.GetOperationStatus(status_request)
829
assert (
0 commit comments