Skip to content

Commit

Permalink
Restore realistic timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
lbianchi-lbl committed Mar 26, 2024
1 parent 0efb87a commit 47eb17f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/electrolytedb/_pytest_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,7 @@ def pytest_configure(self, config: pytest.Config):
self._server = NoServer()
self._make_client = MockDB
elif mode == "mongod":
# self._server = Mongod(retry=[1, 2, 5, 10, 20])
self._server = Mongod(retry=[0.001])
self._server = Mongod(retry=[1, 2, 5, 10, 20])
self._make_client = self._server.client
else:
raise pytest.UsageError(
Expand Down

0 comments on commit 47eb17f

Please sign in to comment.