Skip to content

Commit

Permalink
[#65661] server: tests: Increase deafult worker timeout for gunicorn …
Browse files Browse the repository at this point in the history
…server fixture
  • Loading branch information
Kacper Zienkiewicz committed Nov 5, 2024
1 parent f573c05 commit 146fb76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ def process_gunicorn(db, request):
"gunicorn",
"-k",
"gevent",
"--timeout", # On CPU constrained containers the workers may exceed the default timeout of 30 seconds, which fails the test.
"3600", # HACK: Since this is a stress test, increasing the timeout to an arbitrary big value will suffice.
"-b",
"localhost:5000",
"rdfm_mgmt_server:setup_with_config_from_env()",
Expand Down

0 comments on commit 146fb76

Please sign in to comment.