We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8273a commit c91dcd4Copy full SHA for c91dcd4
src/sagemaker/local/image.py
@@ -31,10 +31,8 @@
31
import tempfile
32
33
from distutils.spawn import find_executable
34
-from signal import SIGTERM
35
from threading import Thread
36
37
-import psutil
38
from six.moves.urllib.parse import urlparse
39
40
import sagemaker
@@ -843,8 +841,6 @@ def run(self):
843
841
844
842
def down(self):
845
"""Placeholder docstring"""
846
- for process in psutil.Process(self.process.pid).children():
847
- process.send_signal(SIGTERM)
848
self.process.terminate()
849
850
0 commit comments