Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -693,8 +693,9 @@ async def process_input(user_input, process):
|
|
693 |
print('Stopping process')
|
694 |
# Send Ctrl+C signal to the subprocess
|
695 |
process.send_signal(signal.SIGINT)
|
|
|
696 |
# Read output and error asynchronously
|
697 |
-
os.kill(int(process.pid), signal.CTRL_C_EVENT)
|
698 |
print('stoping signal sent')
|
699 |
|
700 |
else:
|
|
|
693 |
print('Stopping process')
|
694 |
# Send Ctrl+C signal to the subprocess
|
695 |
process.send_signal(signal.SIGINT)
|
696 |
+
process.kill()
|
697 |
# Read output and error asynchronously
|
698 |
+
# os.kill(int(process.pid), signal.CTRL_C_EVENT)
|
699 |
print('stoping signal sent')
|
700 |
|
701 |
else:
|