Skip to content
Open
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: 2 additions & 0 deletions asynch/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,13 @@ async def close(self):
await self._connection.disconnect()
self._is_closed = True

"""What is it, why does an exception get thrown when commit or rollback is invoked?"""
async def commit(self):
raise errors.NotSupportedError

async def rollback(self):
raise errors.NotSupportedError
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

async def connect(self):
if self._connected:
Expand Down