Skip to content

Commit

Permalink
Setting skip_fast_lock_round to None by default
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Aug 4, 2024
1 parent d434a0f commit d65423f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arango/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -3241,7 +3241,7 @@ def __init__(
lock_timeout: Optional[int] = None,
max_size: Optional[int] = None,
transaction_id: Optional[str] = None,
skip_fast_lock_round: Optional[bool] = False,
skip_fast_lock_round: Optional[bool] = None,
) -> None:
self._executor: TransactionApiExecutor
super().__init__(
Expand Down
2 changes: 1 addition & 1 deletion arango/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __init__(
max_size: Optional[int] = None,
allow_dirty_read: bool = False,
transaction_id: Optional[str] = None,
skip_fast_lock_round: Optional[bool] = False,
skip_fast_lock_round: Optional[bool] = None,
) -> None:
self._conn = connection

Expand Down

0 comments on commit d65423f

Please sign in to comment.