Skip to content

Commit

Permalink
fix: more retries on database queries with less wait
Browse files Browse the repository at this point in the history
Hoping to see less database-related errors.
  • Loading branch information
stdavis committed Jun 19, 2023
1 parent 65b9a42 commit 1a74e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/masquerade/providers/open_sgid.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
NAME = 'name'

RETRY_WAIT_MIN = 0.5
RETRY_WAIT_MAX = 5
RETRY_ATTEMPTS = 3
RETRY_WAIT_MAX = 3
RETRY_ATTEMPTS = 5

#: search field types
TEXT = 'text'
Expand Down

0 comments on commit 1a74e1d

Please sign in to comment.