Removed server process startup in multi-worker testing.

This commit is contained in:
Ricardo Robles 2025-05-10 15:44:23 +02:00
parent 0a56c37834
commit 8599578411

View File

@ -290,6 +290,5 @@ class DaphneTestCase(unittest.TestCase):
with DaphneTestingInstance() as test_app:
# Configure the server with 3 workers
test_app.process.kwargs["workers"] = 3
test_app.process.start()
# Verify that the server is running
self.assertTrue(test_app.process.ready.wait(test_app.startup_timeout))