Skip to content

Commit

Permalink
Add little sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 16, 2023
1 parent 5ca15f6 commit 975819a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acceptance_tests/tests/tests/test_db_maintenance.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import logging
import time

LOG = logging.getLogger(__name__)


def _query(app_connection, params, expected=None):
all_params = {"secret": "changeme"}
all_params.update(params)
time.sleep(0.1)
response = app_connection.get_json("c2c/db/maintenance", params=all_params, cors=False)

all_expected = {"status": 200}
Expand Down

0 comments on commit 975819a

Please sign in to comment.