Skip to content

Commit

Permalink
Skip test_decoupled_one_response_on_and_post_return
Browse files Browse the repository at this point in the history
  • Loading branch information
kthui committed May 31, 2024
1 parent 29882ce commit 0f847d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qa/L0_backend_python/response_sender/response_sender_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,12 +517,16 @@ def test_decoupled_one_response_pre_and_on_return(self):
# using `py_future.result()` with error hangs on exit.

# Decoupled model return 1 response and send 1 response.
@unittest.skip("Response factory segmentation fault, see the TODO comment.")
def test_decoupled_one_response_on_and_post_return(self):
# Note: The returned response will send an error response and complete final
# flag. The response sender is not yet closed due to the model is still
# executing. Then, sending a response and final flag will make their way
# to the frontend, but the request is completed at the frontend, so they
# are not sent to the client.
# TODO: The error response will close the response factory, but not the response
# sender, which enables the model to send response and final flag on the
# deleted response factory and causes a segmentation fault.
responses = self._infer(
model_name="response_sender_decoupled",
number_of_response_before_return=0,
Expand Down

0 comments on commit 0f847d5

Please sign in to comment.