Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[db-manager] Fix max recursion limit in rollback
- Loading branch information
Showing
with
0 additions
and
2 deletions.
-
+0
−2
python/plugins/db_manager/db_plugins/connector.py
|
@@ -172,8 +172,6 @@ def _rollback(self): |
|
|
raise ConnectionError(e) |
|
|
|
|
|
except self.execution_error_types() as e: |
|
|
# do the rollback to avoid a "current transaction aborted, commands ignored" errors |
|
|
self._rollback() |
|
|
raise DbError(e) |
|
|
|
|
|
def _get_cursor_columns(self, c): |
|
|