You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hit this. A quick look says this test - and others in the same class - are doomed to failure. They exercise self.server.process_request which is a method that spawns a thread with no joining or latching or ... so the thing depends on the spawned thread beating the assert.
The `process_request` method is inherently racey to test; it's library
code that spawns a thread and provides no handle to it. Switch the
tests to exercise the underlying `process_request_thread` since that is
what we implement anyhow and which has no threading.
Fixespantsbuild#6877
The `process_request` method is inherently racey to test; it's library
code that spawns a thread and provides no handle to it. Switch the
tests to exercise the underlying `process_request_thread` since that is
what we implement anyhow and which has no threading.
Fixes#6877
The text was updated successfully, but these errors were encountered: