We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug The bug is caused by the tornado Subprocess.wait_for_exit class: tornadoweb/tornado#3364 https://github.com/TU-Wien-dataLAB/Grader-Service/blob/baaaca0da029c881a01423a34f5b1d5f6620dae0/grader_service/autograding/local_grader.py#L440
Subprocess.wait_for_exit
I noticed this when testing autograding in the Celery workers where it would hang on git init.
git init
This could also affect the git server: https://github.com/TU-Wien-dataLAB/Grader-Service/blob/baaaca0da029c881a01423a34f5b1d5f6620dae0/grader_service/handlers/git/server.py#L48
I switched to Popen for the Celery branch, which is a drop-in replacement.
Popen
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The bug is caused by the tornado
Subprocess.wait_for_exit
class: tornadoweb/tornado#3364https://github.com/TU-Wien-dataLAB/Grader-Service/blob/baaaca0da029c881a01423a34f5b1d5f6620dae0/grader_service/autograding/local_grader.py#L440
I noticed this when testing autograding in the Celery workers where it would hang on
git init
.This could also affect the git server:
https://github.com/TU-Wien-dataLAB/Grader-Service/blob/baaaca0da029c881a01423a34f5b1d5f6620dae0/grader_service/handlers/git/server.py#L48
I switched to
Popen
for the Celery branch, which is a drop-in replacement.The text was updated successfully, but these errors were encountered: