MCPcopy Create free account
hub / github.com/cosdata/cosdata / commit_transaction

Function commit_transaction

tests/test-usv.py:79–83  ·  view source on GitHub ↗
(name, txn_id)

Source from the content-addressed store, hash-verified

77 return response.json()["transaction_id"]
78
79def commit_transaction(name, txn_id):
80 url = f"{client.base_url}/collections/{name}/transactions/{txn_id}/commit"
81 response = requests.post(url, headers=client._get_headers(), verify=client.verify_ssl)
82 if response.status_code not in [200, 204]:
83 raise Exception(f"Failed to commit transaction: {response.text}")
84
85def abort_transaction(name, txn_id):
86 url = f"{client.base_url}/collections/{name}/transactions/{txn_id}/abort"

Callers 1

mainFunction · 0.70

Calls 1

_get_headersMethod · 0.45

Tested by

no test coverage detected