Skip to content

Commit 1bec8e9

Browse files
ensure None returned for close_command
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 88996e0 commit 1bec8e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/databricks/sql/backend/thrift_backend.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,5 +1221,4 @@ def close_command(self, command_id: CommandId) -> None:
12211221

12221222
logger.debug("ThriftBackend.close_command(command_id=%s)", command_id)
12231223
req = ttypes.TCloseOperationReq(operationHandle=thrift_handle)
1224-
resp = self.make_request(self._client.CloseOperation, req)
1225-
return resp.status
1224+
self.make_request(self._client.CloseOperation, req)

0 commit comments

Comments
 (0)