-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suite: handle cancelled requests #26
Comments
hi @VallariAg i would like to work on this issue. |
The main issue here is there is no way to know at the FastAPI server if the client has disconnected. A simple example that uses polling to check if the user has cancelled the request or not. This works pretty well with only caveat that we would need to use |
Hey @dikwickley, this issue would need more discussions before we can plan on working on this. |
@VallariAg makes sense. I had created a PR that does just that #29 |
Current behaviour: When a request is sent to
/suite
and the teuthology-suite command is being executed, then if the client request is cancelled (due to timeout or any other reason), the command continues to schedule.Expected behaviour: If the request is cancelled, the scheduling command should also be cancelled/stopped.
The text was updated successfully, but these errors were encountered: